|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2016-04-09 08:59 UTC] cmb@php.net
-Package: *Compile Issues
+Package: Scripting Engine problem
[2016-04-13 02:38 UTC] pollita@php.net
[2016-05-10 20:21 UTC] pollita@php.net
-Assigned To:
+Assigned To: pollita
[2016-05-14 00:28 UTC] pollita@php.net
-Status: Assigned
+Status: Closed
[2016-05-14 00:28 UTC] pollita@php.net
[2018-11-23 09:23 UTC] dragondreamer at live dot com
-: temp at temp dot ru
+: dragondreamer at live dot com
[2018-11-23 09:23 UTC] dragondreamer at live dot com
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Fri Nov 28 16:00:01 2025 UTC |
Description: ------------ Octal escape sequences in double quotes or backticks are not checked for overflow. Test script: --------------- <?php echo ord("\777"[0]) . PHP_EOL; echo ord("\666"[0]) . PHP_EOL; echo ord("\555"[0]) . PHP_EOL; Expected result: ---------------- Some kind of error, because all of \777, \666, \555 sequences are invalid, their value is greater than 255. Actual result: -------------- 255 182 109