summaryrefslogtreecommitdiff
path: root/Zend/tests/declare_005.phpt
blob: 654f8252e0e6509b5898c22a157f6b4516c2ca9c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
--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