1
0
Fork 0

Decompiler: adds eol for help

master
Xuefer 2015-07-13 03:28:17 +08:00
parent 63e3a815da
commit 6de0d86846
1 changed files with 6 additions and 5 deletions

View File

@ -22,11 +22,12 @@ reset($argv);
while (($arg = next($argv)) !== false) {
switch ($arg) {
case '-h':
echo "Usage: phpdc.phpr [-dca] [filename]";
echo " -c: decompile into PHP code";
echo " -d: dump into opcode";
echo " -a: input file is dasm opcode return from xcache_dasm_*";
echo " -h: this help page";
echo "Usage: phpdc.phpr [-dca] [filename]", PHP_EOL;
echo " -c: decompile into PHP code", PHP_EOL;
echo " -d: dump into opcode", PHP_EOL;
echo " -a: input file is dasm opcode return from xcache_dasm_*", PHP_EOL;
echo " -h: this help page", PHP_EOL;
exit();
break;
case '-c':