mirror of
https://github.com/php/php-src.git
synced 2024-11-24 02:15:04 +08:00
11 lines
260 B
Plaintext
11 lines
260 B
Plaintext
|
--TEST--
|
||
|
Bug #28213 (crash in debug_print_backtrace in static methods)
|
||
|
--FILE--
|
||
|
<?php
|
||
|
class FooBar { static function error() { debug_print_backtrace(); } }
|
||
|
set_error_handler(array('FooBar', 'error'));
|
||
|
include('foobar.php');
|
||
|
?>
|
||
|
--EXPECTREGEX--
|
||
|
.*#1\s*include.*
|