bcompiler_load_exe

(PECL bcompiler >= 0.4)
Reads and creates classes from a bcompiler exe file
bool bcompiler_load_exe ( string $filename )

Reads data from a bcompiler exe file and creates classes from the bytecodes.

Parameters:
filename

The exe file path, as a string.

Returns:

Returns TRUE on success or FALSE on failure.

Examples:
bcompiler_load_exe() example
1
2
3
4
5
6
<?php
 
bcompiler_load_exe("/tmp/example.exe");
print_r(get_defined_classes());
 
?>
See also:

bcompiler_load() -

doc_php
2025-01-10 15:47:30
Comments
Leave a Comment

Please login to continue.