|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2016-09-21 23:04 UTC] requinix@php.net
-Status: Open
+Status: Not a bug
[2016-09-21 23:04 UTC] requinix@php.net
[2016-09-22 07:44 UTC] jim dot michaels at Jesusnjim dot com
[2016-09-22 07:54 UTC] jim dot michaels at Jesusnjim dot com
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Fri Nov 07 16:00:02 2025 UTC |
Description: ------------ parser throwing errors on a function call when it should not. this should not be happening. code is fine to my knowledge. Wed 09/21/2016 14:17:02.80|C:\w\Jesusnjim|>php --version PHP 7.1.0-dev (cli) (built: Sep 5 2016 07:44:38) ( NTS MSVC14 (Visual C++ 2015) x86 ) Copyright (c) 1997-2016 The PHP Group Zend Engine v3.1.0-dev, Copyright (c) 1998-2016 Zend Technologies Test script: --------------- <?php function ReplaceComment($haystack, $replacemiddlewith, $beginneedle, $endneedle, &$result, $tag){return true;} $result=""; $z=ReplaceComment("<!-- menustart --><!-- menuend -->", "filler", '<!-- menustart -->','<!-- menuend -->', $result,"visitor"); echo ($z?"false":"true").$result."\r\n"; $z=ReplaceComment("<!-- menustart -->t<!-- menuend -->", "filler2, '<!-- menustart -->','<!-- menuend -->', $result,"visitor"); echo ($z?"false":"true").$result."\r\n"; $z=ReplaceComment("<!-- menustart -->123456789012345678<!-- menuend -->", "filler3, '<!-- menustart -->','<!-- menuend -->',$result,"visitor"); echo ($z?"false":"true").$result."\r\n"; exit(1); ?> Expected result: ---------------- Wed 09/21/2016 14:13:10.19|C:\w\Jesusnjim|>php menu7a.php PHP Parse error: syntax error, unexpected 'visitor' (T_STRING), expecting ',' or ')' in C:\w\Jesusnjim\menu7a.php on line 196 Parse error: syntax error, unexpected 'visitor' (T_STRING), expecting ',' or ')' in C:\w\Jesusnjim\menu7a.php on line 196 Wed 09/21/2016 14:13:59.24|C:\w\Jesusnjim|> Actual result: -------------- Wed 09/21/2016 14:13:10.19|C:\w\Jesusnjim|>php menu7a.php PHP Parse error: syntax error, unexpected 'visitor' (T_STRING), expecting ',' or ')' in C:\w\Jesusnjim\menu7a.php on line 196 Parse error: syntax error, unexpected 'visitor' (T_STRING), expecting ',' or ')' in C:\w\Jesusnjim\menu7a.php on line 196 Wed 09/21/2016 14:13:59.24|C:\w\Jesusnjim|>