php-src/ext/standard/tests/general_functions/bug41037.phpt

23 lines
492 B
Plaintext
Raw Normal View History

--TEST--
Bug #41037 (unregister_tick_function() inside the tick function crash PHP)
--FILE--
<?php
function a() {
echo "hello";
unregister_tick_function('a');
}
2014-07-22 14:11:19 +00:00
declare (ticks=1) {
register_tick_function('a');
2014-07-22 14:11:19 +00:00
echo "Done\n";
}
?>
--EXPECTF--
hello
Warning: unregister_tick_function(): Unable to delete tick function executed at the moment in %s on line %d
Done
hello
Warning: unregister_tick_function(): Unable to delete tick function executed at the moment in %s on line %d