From 345f1cb361f3bf233f350c47bab4d11d112041b1 Mon Sep 17 00:00:00 2001 From: Jakub Vrana Date: Tue, 5 Apr 2005 12:48:05 +0000 Subject: [PATCH] Parse error causes processing halting since PHP 4.3.5 (bug #31736) git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@183657 c90b9560-bf6c-de11-be94-00142212c4b1 --- language/control-structures.xml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/language/control-structures.xml b/language/control-structures.xml index 4360ed7394..d65e794c48 100644 --- a/language/control-structures.xml +++ b/language/control-structures.xml @@ -1,5 +1,5 @@ - + Control Structures @@ -1281,7 +1281,8 @@ require ('somefile.txt'); a missing file to halt processing of the page. include does not behave this way, the script will continue regardless. Be sure to have an appropriate include_path setting as well. - Be warned that parse error in required file doesn't cause processing halting. + Be warned that parse error in required file doesn't cause processing halting + in PHP versions prior to PHP 4.3.5. Since this version, it does. Files for including are first looked in include_path relative to the current working directory