PHP 8.5.0 Beta 1 available for testing

Voting

: max(six, nine)?
(Example: nine)

The Note You're Voting On

legolas558
18 years ago
Please note that in the below encode function there is a bug!

<?php
if (($c==0x3d) || ($c>=0x80) || ($c<0x20))
?>

$c should be checked against less or equal to encode spaces!

so the correct code is

<?php
if (($c==0x3d) || ($c>=0x80) || ($c<=0x20))
?>

Fix the code or post this note, please

<< Back to user notes page

To Top