- Timestamp:
- 2011-06-08T02:51:59Z (7 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Decompiler.class.php
r811 r819 2575 2575 } 2576 2576 // }}} 2577 function decompileDasm($content) // {{{ 2578 { 2579 $this->dc = $content; 2580 } 2581 // }}} 2577 2582 function output() // {{{ 2578 2583 { -
trunk/phpdc.phpr
r605 r819 14 14 15 15 $dc = new Decompiler(); 16 if (isset($argv[1])) { 16 if (isset($argv[2])) { 17 eval('$dc->dc = ' . file_get_contents($argv[2]) . ';'); 18 } 19 else if (isset($argv[1])) { 17 20 $dc->decompileFile($argv[1]); 18 21 } … … 25 28 $phpcode .= fgets(stdin); 26 29 } 27 $dc->decompile File($phpcode);30 $dc->decompileString($phpcode); 28 31 } 29 32 $dc->output();
Note: See TracChangeset
for help on using the changeset viewer.