PHP stream_set_timeout 和 popen 不能一起工作?

发布于 2024-11-05 14:38:47 字数 592 浏览 0 评论 0原文

我使用 popen 打开到另外 2 个 php 脚本的流:

$proc[0] = popen("/usr/srv/php /my/folder/myscript.php 0 &", "r"); 
$proc[1] = popen("/usr/srv/php /my/folder/myscript.php 1 &", "r");
if (!stream_set_timeout($proc[0], 1, 0)) print "stream_set_timeout failed on stream 1"; 
if (!stream_set_timeout($proc[1], 1, 0)) print "stream_set_timeout failed on stream 2";

发生的情况是,stream_set_timeout 在两个流上都失败(返回 false,在使用 php 5.3 的 Linux 和 Windows 机器上进行测试。)。在两个流上使用 fread 效果很好,但我想“同时”从两个流读取,并且 fread 不断阻止从另一个流读取(顺便说一句,stream_set_blocking 也返回失败,返回 false)。

知道为什么这不起作用吗?

I use popen to open a stream to 2 other php-scripts:

$proc[0] = popen("/usr/srv/php /my/folder/myscript.php 0 &", "r"); 
$proc[1] = popen("/usr/srv/php /my/folder/myscript.php 1 &", "r");
if (!stream_set_timeout($proc[0], 1, 0)) print "stream_set_timeout failed on stream 1"; 
if (!stream_set_timeout($proc[1], 1, 0)) print "stream_set_timeout failed on stream 2";

What happens is that stream_set_timeout fails on both streams (returning false, tested on a linux- and a windows-machine with php 5.3.). Using fread on both stream works fine, but I want to read from both streams "simultaneously" and fread keeps blocking reading from the other stream (by the way, stream_set_blocking returns fails, too, returning false).

Any idea why this isn't working?

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文