如果没有 eval() 我该如何做到这一点
以下作品,但我想知道。 有没有一种方法可以在不使用 eval 的情况下做到这一点?
$i = file_get_contents('/var/www/php/func/whois.php');
apc_store('whois', $i) ;
$w = apc_fetch('whois');
eval( " ?> $w <?php ");
echo whois('exsample.net');
我希望我可以将其存储为可执行文件,由 php 解释器评估;但这不会轻易发生。
Following works, however I am wondering.
Is there a way of doing this without using eval?
$i = file_get_contents('/var/www/php/func/whois.php');
apc_store('whois', $i) ;
$w = apc_fetch('whois');
eval( " ?> $w <?php ");
echo whois('exsample.net');
I wish I could store that, evaluate by php interpreter, as executable; but that isn't going to happen easily.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
嗯,这在当时看来是一个好主意,但在了解了 APC 的工作原理之后,我发现这一切都已经内置了。
Well, this seamed to be a great idea at the time but after learning more about how APC works, I found out that this is all already build in.