ru_php/Zend/tests/declare/declare_005.phpt

18 lines
203 B
PHP

--TEST--
Testing declare statement with ticks
--FILE--
<?php
register_tick_function(function () { echo "tick\n"; });
function foo() { }
declare(ticks=1) {
$statement;
foo();
}
?>
--EXPECT--
tick
tick