Mercurial > hg > isophonics-drupal-site
view vendor/symfony/debug/Resources/ext/tests/002_1.phpt @ 17:129ea1e6d783
Update, including to Drupal core 8.6.10
author | Chris Cannam |
---|---|
date | Thu, 28 Feb 2019 13:21:36 +0000 |
parents | 7a779792577d |
children |
line wrap: on
line source
--TEST-- Test symfony_debug_backtrace in case of non fatal error --SKIPIF-- <?php if (!extension_loaded('symfony_debug')) { echo 'skip'; } ?> --FILE-- <?php function bar() { bt(); } function bt() { print_r(symfony_debug_backtrace()); } bar(); ?> --EXPECTF-- Array ( [0] => Array ( [file] => %s [line] => %d [function] => bt [args] => Array ( ) ) [1] => Array ( [file] => %s [line] => %d [function] => bar [args] => Array ( ) ) )