PHP version:5.3.3
Here is the example:
<?php
declare(ticks=1);
// declare(ticks=2);
function handler()
{
echo "handler called\n";
}
register_tick_function('handler');
$a = 1;
// Output: handler called\nhandler called\n
?>
The Output is the same handler called\nhandler called\n
whenever assign the var ticks
as 1
or 2
.
Below is the opcode generated by vld:
Finding entry points
Branch analysis from position: 0
Return found
filename: /home/soooldier/Php/2.php
function name: (null)
number of ops: 10
compiled vars: !0 = $a
line # * op fetch ext return operands
---------------------------------------------------------------------------------
2 0 > TICKS 1
1 TICKS 1
4 2 NOP
7 3 TICKS 1
8 4 SEND_VAL 'handler'
5 DO_FCALL 1 'register_tick_function'
6 TICKS 1
9 7 ASSIGN !0, 1
8 TICKS 1
10 9 > RETURN 1
branch: # 0; line: 2- 10; sop: 0; eop: 9
path #1: 0,
Function handler:
Finding entry points
Branch analysis from position: 0
Return found
filename: /home/soooldier/Php/2.php
function name: handler
number of ops: 3
compiled vars: none
line # * op fetch ext return operands
---------------------------------------------------------------------------------
6 0 > ECHO 'handler+called%0A'
1 TICKS 1
7 2 > RETURN null
branch: # 0; line: 6- 7; sop: 0; eop: 2
path #1: 0,
End of function handler.
**In php manual,it says:
A tick is an event that occurs for every N low-level tickable statements executed by the parser within the declare block. The value for N is specified using ticks=N within the declare blocks's directive section.**
But in the example script, The output is the same whenever assign ticks
as 1
or 2