mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00
19 lines
359 B
PHP
19 lines
359 B
PHP
--TEST--
|
|
Testing declare statement with ticks with callback arguments
|
|
--FILE--
|
|
<?php
|
|
register_tick_function(function (stdClass $object, array $array) {
|
|
echo "tick: ", get_class($object), " ", count($array), "\n";
|
|
}, new \stdClass(), [1, 2, 3]);
|
|
function foo() { }
|
|
|
|
declare(ticks=1) {
|
|
|
|
$statement;
|
|
foo();
|
|
|
|
}
|
|
?>
|
|
--EXPECT--
|
|
tick: stdClass 3
|
|
tick: stdClass 3
|