summaryrefslogtreecommitdiff
path: root/Zend/tests/declare_005.phpt
blob: 8f5adcfbd2f1c827e27193a554e6ac0421067648 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
--TEST--
Testing declare statement with ticks
--SKIPIF--
--FILE--
<?php
register_tick_function(function () { echo "tick\n"; });
function foo() { }

declare(ticks=1) {

$statement;
foo();

}
?>
--EXPECTF--
tick
tick