PHP echo 是否等待脚本的其余部分

发布于 2024-12-15 03:08:58 字数 412 浏览 1 评论 0原文

php 的 echo 是否会等待将数据发送到屏幕,直到脚本的其余部分完成?

因此,如果我有:

<?

echo "Hello World";

$xmlData = file_get_cotents("www.webpage.com");

        $myFile = "data_backup.xml";
        $fh = fopen($myFile, 'w') or die("can't open file");
        $stringData =  $xmlData;
        fwrite($fh, $stringData);
        fclose($fh);
?>

那么上面的示例是否会显示 Hello World 直到检索 url 中的内容并将其保存在本地?

Does the php's echo wait to send data to the screen, until the rest of the script is complete?

So if I have:

<?

echo "Hello World";

$xmlData = file_get_cotents("www.webpage.com");

        $myFile = "data_backup.xml";
        $fh = fopen($myFile, 'w') or die("can't open file");
        $stringData =  $xmlData;
        fwrite($fh, $stringData);
        fclose($fh);
?>

So does the above sample what to show Hello World until the contents from the url are retrived and saved locally?

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

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

发布评论

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

评论(2

萌︼了一个春 2024-12-22 03:08:58

是的。除非你用flush();刷新数据

Yep. unless you flush the data with flush();

你在看孤独的风景 2024-12-22 03:08:58

PHP 中的所有脚本都发生在页面加载之前,因此您的问题的答案是:是的,它将等到文件被检索并保存后才显示“Hello World”。

All of the scripting in PHP occurs before the page loads, so the answer to your question is: yes, it would wait until the file is retrieved and saved before showing "Hello World".

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