foo.exe (compiled):
<?php
class myclass {
static $scalar = 'Hello World!';
}
?>
foo.php:
<?php
include 'foo.exe';
echo myclass::$scalar;
?>
As you can see, simply including the file will also work perfectly (oh joy!)
![]() |
|
||||||||||
|
bcompiler_load_exeDescriptionbool bcompiler_load_exe ( string filename )
Reads data from a bcompiler exe file and creates classes from the bytecodes.
bcompiler_load_exe
Sinured
01-Jul-2007 03:59
foo.exe (compiled): |