PHP脚本可以启动另一个PHP脚本并退出吗?

前端之家收集整理的这篇文章主要介绍了PHP脚本可以启动另一个PHP脚本并退出吗?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
PHP脚本如何启动另一个 PHP脚本,然后退出,让另一个脚本运行?

另外,第二个脚本是否有任何方法PHP脚本到达特定行时通知它?

这是怎么做的.您告诉浏览器读取输出的前N个字符,然后关闭连接,同时脚本一直运行直到完成.
<?PHP
ob_end_clean();
header("Connection: close");
ignore_user_abort(); // optional
ob_start();
echo ('Text the user will see');
$size = ob_get_length();
header("Content-Length: $size");
ob_end_flush();     // Will not work
flush();            // Unless both are called !

// At this point,the browser has closed connection to the web server

// Do processing here
include('other_script.PHP');

echo('Text user will never see');
?>
原文链接:https://www.f2er.com/php/130847.html

猜你在找的PHP相关文章