<?php/* * * opcode number: 105 */// A function that records the time when it is calledfunction profile(){ echo "profile function is called\n";}// Set up a tick handlerregister_tick_function("profile");// Initialize the function before the declare blockprofile();// Run a block of code, throw a tick every 2nd statementdeclare(ticks=2) { for ($x = 0; $x < 10; ++$x) { echo "hello world\n"; }}?>
関数名: (null)
コンパイルされた変数: !0=$x
関数名: profile
コンパイルされた変数: none