使用反射在运行时更改 PHP 类和方法的内容?
这只是为了好玩,请不要尖叫。
我想在运行时重写类方法的内容(我的意思是,不修改文件,只需替换/编辑代码在记忆中),这可能吗?
使用反射,还是其他什么?
请不要关闭这个问题,我正在寻找 runkit 之外的另一个答案。
This is for fun only, don't scream please.
I would like to rewrite the content of a class's methods at runtime (I mean, without modifying the file, only replacing/editing the code in memory), is that possible?
Using reflection, or anything else?
Don't close this question please, I'm looking for another answer than runkit.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
为什么不简单地创建一个新类来继承您想要修改的类并覆盖它的方法呢?
只要该方法未标记为最终方法...
Why not simply create a new class that inherits from the one you want to modify and overwrite it's methods?
As long as the method isn't marked as final...