/
vshmidt
/
php
Обзор
Документация
Войти
/
vshmidt
/
php
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
sapi/phpdbg/tests/breakpoints_005.phpt
27 строк
403 B
Peter Kokot
Sync leading and final newlines in *.phpt sections
15 окт 2018, 05:33
15 окт 2018, 05:33
d679f02
Код
Авторство
О чём код?
--TEST-- Test breakpoint into function context --PHPDBG-- b breakpoints_005.php:4 r ev $bar c q --EXPECTF-- [Successful compilation of %s] prompt> [Breakpoint #0 added at %s:4] prompt> [Breakpoint #0 at %s:4, hits: 1] >00004: var_dump($bar); 00005: } 00006: prompt> test prompt> string(4) "test" [Script ended normally] prompt> --FILE-- <?php function foo($bar) { var_dump($bar); } foo("test");