1
0
mirror of https://github.com/php/php-src.git synced 2026-04-25 08:58:28 +02:00

- Added finish/f command

This commit is contained in:
Felipe Pena
2013-11-17 11:59:21 -02:00
parent 146520f045
commit f2b8cdc5be
6 changed files with 76 additions and 24 deletions
+17
View File
@@ -7,10 +7,27 @@ class phpdbg {
}
}
function test() {
$var = 1 + 1;
$var += 2;
$var <<= 3;
$foo = function () {};
$foo();
return $var;
}
$dbg = new phpdbg();
$test = 1;
var_dump(
$dbg->isGreat("PHP Rocks !!"));
test();
echo "it works!\n";
?>