|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2016-05-18 09:43 UTC] laruence@php.net
[2016-05-18 11:30 UTC] cmb@php.net
-Summary: Reproductible crash
+Summary: including script with "${}" crashes the engine
-Status: Open
+Status: Feedback
[2016-05-18 11:30 UTC] cmb@php.net
[2016-05-29 04:22 UTC] php-bugs at lists dot php dot net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Fri Nov 07 19:00:02 2025 UTC |
Description: ------------ If you try to include a file that contains "${}" (empty variable in a double quote d string), php crash on the include instruction, no log is generated. I'd expect a parse error pointing the faulty code. Test script: --------------- fileA : include "fileB.php"; ------------------------- fileB : $test = "test ${}";