如果没有 eval() 我该如何做到这一点

发布于 2024-12-24 17:44:35 字数 284 浏览 2 评论 0原文

以下作品,但我想知道。 有没有一种方法可以在不使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

年华零落成诗 2024-12-31 17:44:35

嗯,这在当时看来是一个好主意,但在了解了 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文