From 4ad8cfcfff61bc54d7c1ddbfddf0bb1f0eb0ffdf Mon Sep 17 00:00:00 2001 From: Jakub Vrana Date: Wed, 21 Sep 2005 21:20:27 +0000 Subject: [PATCH] Undocument __halt_compiler documented elsewhere git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@196550 c90b9560-bf6c-de11-be94-00142212c4b1 --- language/control-structures.xml | 34 +-------------------------------- 1 file changed, 1 insertion(+), 33 deletions(-) diff --git a/language/control-structures.xml b/language/control-structures.xml index 8960d516ec..115011627a 100644 --- a/language/control-structures.xml +++ b/language/control-structures.xml @@ -1,5 +1,5 @@ - + Control Structures @@ -1762,38 +1762,6 @@ include_once("A.php"); // this will include a.php again on Windows! (PHP 4 only) - - <function>__halt_compiler</function> - - The __halt_compiler statement stops the processing of - PHP instructions. - - - The main purpose of this statement is to allow creating scripts containing - any data (possibly also PHP - start tags) such as one-file installers. Byte position of the data - start can be determined by the - __COMPILER_HALT_OFFSET__ constant which is defined - only if there is a __halt_compiler presented in the - file. - - - <function>__halt_compiler</function> example - - - - - - - __halt_compiler was added in PHP 5.1. - - - -