|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2009-10-05 14:54 UTC] compconsultant at yahoo dot com
[2009-12-18 11:32 UTC] jani@php.net
[2009-12-21 05:30 UTC] compconsultant at yahoo dot com
[2010-02-07 05:50 UTC] compconsultant at yahoo dot com
[2010-02-07 17:40 UTC] jani@php.net
[2011-03-04 12:31 UTC] working dot good at gmailc dot om
[2011-03-04 12:31 UTC] working dot good at gmailc dot om
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Tue Nov 04 16:00:01 2025 UTC |
Description: ------------ Using proc_open to open a pipe to a command, and, putting stream_select into a function, hangs upon return from that function. Reproduce code: --------------- <?php function SelectStream($StreamsArray) { $Null = array(); $timeout = NULL; stream_select($StreamsArray, $Null, $Null, $timeout); echo "After select\n"; return FALSE; } $ProcDescriptor = array(1 => array("pipe", "w")); $Resource = proc_open("tail -F /var/log/mail.log", $ProcDescriptor, $Pipes, NULL, NULL, array("binary_pipes" => TRUE)); if ($Resource === FALSE) die("proc_open failed\n"); $ProgResource = $Pipes[1]; /* $ProgResource = popen("tail -F /var/log/mail.log", "r"); if ($ProgResource === FALSE) die("Could not open the PIPE\n"); */ $Streams[] = $ProgResource; $Resource = SelectStream($Streams); echo "ok\n"; ?> Expected result: ---------------- I expect ok to be displayed. If you replace proc_open with popen (uncomment the lines), the same function returns fine (ok displayed). If you remove the stream_select, it also returns fine. Actual result: -------------- The string ok is not displayed, the statement is never reached. After select is displayed. So, it is hanging on the return statement.