PHP - file_get_contents() 自动回显到 HTML 页面

发布于 2024-12-23 01:18:02 字数 278 浏览 0 评论 0原文

我在远程服务器上有一个页面,其中包含以下行:

$contents = file_get_contents($search_url);

无论我做什么,它都会自动将 $contents 回显到 HTML 页面。就好像我做了以下事情:

$contents = file_get_contents($search_url);
echo $contents;

什么可能导致 PHP 这样做?是否有任何配置项需要更改?

I have a page on a remote server with the following line:

$contents = file_get_contents($search_url);

which automatically echoes $contents to the HTML page no matter what I do. It's as if I have done the following:

$contents = file_get_contents($search_url);
echo $contents;

What could be causing PHP to do this? Is there any configuration item that needs changing?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

稀香 2024-12-30 01:18:02

可能值得看一下您的这段代码。如果把它注释掉,还会出现同样的情况吗?

<?php if (isset($debug) && isset($ret_value)):?>
<pre>
    <?php print_r($ret_value) ?>
</pre>
<?php endif; ?>

这似乎与您之前在 file_get_contents() 中获取的内容相呼应。

It might be worth taking a look at this bit of your code. If you comment it out, does the same thing still happen?

<?php if (isset($debug) && isset($ret_value)):?>
<pre>
    <?php print_r($ret_value) ?>
</pre>
<?php endif; ?>

This does appear to echo what you have previously fetched in the file_get_contents().

哭泣的笑容 2024-12-30 01:18:02

这是一个愚蠢的错误 - 变量 $contents 正在被包含的文件以及包含它的函数中使用。这导致了问题 - file_get_contents 没有任何问题!

It was a STUPID bug - the variable $contents is being used in the included file as well as in the function it is included from. This caused the issue - nothing wrong with file_get_contents!

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