PHP Classes

File: vendor/symfony/debug/Resources/ext/tests/002_1.phpt

Recommend this page to a friend!
  Classes of Gavin Gordon Markowski   Helphp PHP Class Generator   vendor/symfony/debug/Resources/ext/tests/002_1.phpt   Download  
File: vendor/symfony/debug/Resources/ext/tests/002_1.phpt
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Helphp PHP Class Generator
Generate classes from configuration parameters
Author: By
Last change:
Date: 2 years ago
Size: 642 bytes
 

Contents

Class file image Download
--TEST-- Test symfony_debug_backtrace in case of non fatal error --SKIPIF-- <?php if (!extension_loaded('symfony_debug')) print '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 ( ) ) )