1--TEST-- 2Basic function breakpoints 3--PHPDBG-- 4b foo 5r 6c 7q 8--EXPECTF-- 9[Successful compilation of %s] 10prompt> [Breakpoint #0 added at foo] 11prompt> [Breakpoint #0 in foo() at %s:4, hits: 1] 12>00004: var_dump($bar); 13 00005: } 14 00006: 15prompt> string(4) "test" 16[Script ended normally] 17prompt> 18--FILE-- 19<?php 20 21function foo($bar) { 22 var_dump($bar); 23} 24 25foo("test"); 26