mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-16 00:48:54 +00:00
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
This commit is contained in:
parent
34d51b1119
commit
345f1cb361
1 changed files with 3 additions and 2 deletions
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- $Revision: 1.113 $ -->
|
||||
<!-- $Revision: 1.114 $ -->
|
||||
<chapter id="language.control-structures">
|
||||
<title>Control Structures</title>
|
||||
|
||||
|
@ -1281,7 +1281,8 @@ require ('somefile.txt');
|
|||
a missing file to halt processing of the page. <function>include</function> does
|
||||
not behave this way, the script will continue regardless. Be sure to have an
|
||||
appropriate <link linkend="ini.include-path">include_path</link> 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.
|
||||
</simpara>
|
||||
<simpara>
|
||||
Files for including are first looked in include_path relative to the current working directory
|
||||
|
|
Loading…
Reference in a new issue