PHP 打开文件?

发布于 09-14 01:09 字数 372 浏览 2 评论 0原文

current.php是我们在浏览器中打开的页面。

other_1.phpother_2.php 是我们要执行的页面。这两页工作量很大,但工作速度很慢。

当我们打开current.php时,我们怎样才能调用其他页面来工作?

current.php应该只是打开然后死掉,什么也没有得到,只需发送命令即可打开。

如果当前页面包含其他页面,它将消耗大量内存并超出托管帐户上可用的最大执行时间。

所有页面都放在同一个文件夹中。

有什么想法吗?

谢谢。

current.php is page which we open in browser.

other_1.php and other_2.php are pages, which we want to execute. These two pages do a big job and work slowly.

How can we call both other pages to work, just when we open current.php?

current.php should just open and die, nothing get, just send commands to open.

If current page will include other pages, it will eat a lot of memory and go out from the maximum time execution available on hosting-account.

All the pages placed in same folder.

Any idea?

Thanks.

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

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

发布评论

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

评论(2

<逆流佳人身旁2024-09-21 01:09:23

你可以尝试这个:

function execInBackground($cmd) {
    if (substr(php_uname(), 0, 7) == "Windows"){
        pclose(popen("start /B ". $cmd, "r")); 
    }
    else {
        exec($cmd . " > /dev/null &");  
    }
}

在 $cmd 中,你将路径传递给 php,然后你就可以像在 CLI 中一样使用该命令。

you can try this one:

function execInBackground($cmd) {
    if (substr(php_uname(), 0, 7) == "Windows"){
        pclose(popen("start /B ". $cmd, "r")); 
    }
    else {
        exec($cmd . " > /dev/null &");  
    }
}

In the $cmd you pass the path to php and than you can use the command as in CLI.

美男兮2024-09-21 01:09:23

您可以使用

<?php

include("other_1.php");

?>

and 在 other_1.php 的末尾添加另一个包含 other_2.php 的内容,依此类推。如果我误解了这个问题,请告诉我。

You can use

<?php

include("other_1.php");

?>

and at the end of other_1.php add another include for other_2.php, and so on. If I have misunderstood the question, let me know.

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