Optimize extends

This commit is contained in:
bzick
2013-06-08 00:08:00 +04:00
parent f42d0cff5d
commit a515c8e969
13 changed files with 275 additions and 113 deletions

View File

@@ -14,4 +14,11 @@ function drop() {
$e = new Exception();
echo "-------\nDump trace: \n".$e->getTraceAsString()."\n";
exit();
}
function dump() {
foreach(func_get_args() as $arg) {
fwrite(STDERR, "DUMP: ".call_user_func("print_r", $arg, true)."\n");
}
}