Voting

: max(nine, five)?
(Example: nine)

The Note You're Voting On

kenorb at gmail dot com
14 years ago
One line of code to print simplest and shortest human readable backtrace:)
<?php
array_walk
(debug_backtrace(),create_function('$a,$b','print "{$a[\'function\']}()(".basename($a[\'file\']).":{$a[\'line\']}); ";'));
?>

<< Back to user notes page

To Top