From: krakjoe Date: Wed, 13 Nov 2013 10:17:53 +0000 (+0000) Subject: ... X-Git-Tag: php-5.6.0alpha1~110^2~375 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ae1c05944c5ee449053d9c4b59223030aeaee19c;p=php ... --- diff --git a/tutorials/intro.md b/tutorials/intro.md index fa1c99ebec..0c7f574913 100644 --- a/tutorials/intro.md +++ b/tutorials/intro.md @@ -24,7 +24,7 @@ phpdbg provides many options for specifying break points, as illustrated by a sc In those case where you wish to program your break points in userland, phpdbg includes a userland API, in the shape of two simple functions: -``` +```php /** * Sets a breakpoint at the next opcode address * @return void @@ -33,7 +33,7 @@ proto void phpdbg_break(void); ``` -``` +```php /** * Clear breakpoints before continuing execution * @return void @@ -55,7 +55,7 @@ Direct access to eval allows you to change _anything_ at _any_ time during execu Library code for this section: -``` +```php