bcompiler_load_exe

(PECL)

bcompiler_load_exe -- Reads and creates classes from a bcompiler exe file

Description

bool bcompiler_load_exe ( string filename )

Varning

Den h�r funktionen �r EXPERIMENTELL. Dess beteende, namnet p� den, och allt annat dokumenterat om den h�r funktionen kan �ndras i framtida utg�var av PHP. Anv�nd den p� egen risk.

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

Exempel 1. bcompiler_load() example

<?php

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

?>