我不确定它是否存在于PHP中,或者您可能认为它是一个疯狂或疯狂的想法。但不知何故,如果我可以在PHP脚本中的每个语句之后执行函数,那么对我来说会非常方便。
例如: -
正常情况: -
<?php
$a = 1;
$b = 2;
echo $a . "\n";
echo $b . "\n";
?>
这应该导致: -
1
2
我想要一个可以写函数的案例: -
function should_excute_after_each_php_statement() {
echo 'a statement completed' . "\n";
}
并且应该产生脚本: -
a statement completed
a statement completed
1
a statement completed
2
a statement completed
可能的?