(no version information, might be only in CVS)
This function halts the execution of the compiler. This can be useful to embed data in PHP scripts, like the installation files.
Nota: __halt_compiler() can only be used from the outermost scope.
Ejemplo 1. A __halt_compiler() example
<?php// open this file$fp = fopen(__FILE__, 'r');// seek file pointer to data// plus the line-feed (that will depend on the file format/OS)fseek($fp, __COMPILER_HALT_OFFSET__ + strlen(PHP_EOL));// and output itvar_dump(stream_get_contents($fp));// the end of the script execution__halt_compiler();the instalation data (eg. tar, gz, etc..)
Hosting by: hurra.comGenerated: 2007-01-26 18:00:59