PHP 8.4.24 Released!

Voting

: min(three, three)?
(Example: nine)

The Note You're Voting On

winkelnkemper at googlemail dot com
15 years ago
If you want to save data that is derived from a Javascript canvas.toDataURL() function, you have to convert blanks into plusses. If you do not do that, the decoded data is corrupted:

<?php
  $encodedData = str_replace(' ','+',$encodedData);
  $decocedData = base64_decode($encodedData);
?>

<< Back to user notes page

To Top