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
<?php

bcompiler_load_exe("/tmp/example.exe");
print_r(get_defined_classes());

?>

See also:

bcompiler_load() -

doc_php
2016-02-24 15:53:46
Comments
Leave a Comment

Please login to continue.