|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2001-06-20 02:32 UTC] derick@php.net
[2001-06-20 09:50 UTC] sniper@php.net
[2001-06-21 14:30 UTC] sniper@php.net
[2001-06-22 08:46 UTC] sniper@php.net
[2001-07-22 13:19 UTC] andy@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sat Nov 01 07:00:01 2025 UTC |
create 3 files test.php: <?php include("test1.php"); include("test2.php"); ?> test1.php: <?php foreach($a as $b){ echo"a"); } ?> test2.php: <?php ?> now run test.php.. PHP crashes. There's a little syntax error in test1.php: echo"a"); should be echo("a");