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_exe说明bool bcompiler_load_exe ( string filename )Reads data from a bcompiler exe file and creates classes from the bytecodes. 范例
Sinured
01-Jul-2007 10:59
foo.exe (compiled): | ||||