Changeset 763 in svn
- Timestamp:
- 2011-04-17T12:02:25Z (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Decompiler.class.php
r762 r763 1725 1725 $op1 = $op['op1']; 1726 1726 $op2 = $op['op2']; 1727 $d = array( 'n' => xcache_get_opcode($op['opcode']), 'c' =>$op['opcode']);1727 $d = array(xcache_get_opcode($op['opcode']), $op['opcode']); 1728 1728 1729 1729 foreach (array('op1' => '1:', 'op2' => '2:', 'result' => '>') as $k => $kk) { … … 1765 1765 1766 1766 foreach ($d as $k => $v) { 1767 echo $k, str($v), "\t";1767 echo is_int($k) ? '' : $k, str($v), "\t"; 1768 1768 } 1769 1769 echo PHP_EOL;
Note: See TracChangeset
for help on using the changeset viewer.