root/eaccelerator/trunk/doc/php/dasm.php
| Revision 265, 1.0 kB (checked in by hans, 2 years ago) | |
|---|---|
| |
| Line | |
|---|---|
| 1 | <?php |
| 2 | /* |
| 3 | * This file is a file with dummy php function to document the functions in |
| 4 | * the eAccelerator extension. |
| 5 | */ |
| 6 | |
| 7 | /** |
| 8 | * eAccelerator disassemebler |
| 9 | * These functions can be disabled with the configuration switch |
| 10 | * --with-eaccelerator-disassembler at compile time. |
| 11 | * |
| 12 | * @package eAccelerator |
| 13 | */ |
| 14 | |
| 15 | /** |
| 16 | * Get the opcodes from a file |
| 17 | * This function returns an array with opcodes for the given filename. It |
| 18 | * will only return the opcodes for a cached file. These arrays of opcodes |
| 19 | * are returned for the global file, the function in the file and all methods |
| 20 | * of all classes in that file. |
| 21 | * |
| 22 | * @return array On the first level this array can contain three elements: |
| 23 | * - op_array: the op_array of the file |
| 24 | * - functions: an array with key the function name and as value the op_array of that function |
| 25 | * - classes: an array with key the classname and as value an array with as key the method name and as value the op_array of that method. |
| 26 | */ |
| 27 | function eaccelerator_dasm_file(string $filename) {}; |
| 28 | |
| 29 | ?> |
| 30 |
Note: See TracBrowser for help on using the browser.