SwVitaliy

Untitled

May 24th, 2012
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.35 KB | None | 0 0
  1. array_walk( debug_backtrace(),
  2.                 function($a) {
  3.                     print "<br /><b>".  basename($a['file'])
  4.                         . "</b> &nbsp; <font color=\"red\">" . $a['line'] . "</font> &nbsp; <font color=\"green\">"
  5.                         . $a['function'] ."() </font> &nbsp; -- ".dirname($a['file'])."/";
  6.                 });
Advertisement
Add Comment
Please, Sign In to add comment