是否可以在执行 PHP 脚本的每一行后运行 PHP 函数?
我的问题与此类似: 是否可能在 Ruby 中的每一行之后运行代码? 不过我想用 PHP 来做。
可能吗?如果可能的话,如何实现?
My question is similar to this: Is it possible to run code after each line in Ruby?
However I want to do it in PHP.
Is it possible and if so, how?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以注册一个刻度处理程序:
正如您所看到的,它并不完全是“每一行代码”,除非您每行只编写一个可勾选的语句。但这是你能得到的最接近的。
示例:
将输出(demo):
You can register a tick handler:
As you can see, it's not exactly as "each line of code" unless you only write one tickable statement each line. But it's the closest you can get.
Example:
will output (demo):
我不认为它是在 PHP 中。但是,您可以编写一个 PHP 脚本,该脚本采用原始脚本并在原始脚本的每一行之后插入额外的行。
I don't think it is within PHP. You could, however, write a PHP script that took your original script and inserted an extra line after each line of the original.
您可以尝试在原始 PHP 周围放置一个包装器,如下所示:
You could try putting a wrapper around your original PHP, like so: