There is a console program, it requires input parameters gradually. And need to know exactly what she wrote in response.

You say it is simple, using proc_open. Ca. I have it and use it. But the only problem is that when I read somewhere that issued the prog hangs reading ...

<?php
$descriptorspec = array(
   0 => array("pipe", "r"),
   1 => array("pipe", "w"),
   2 => array("pipe", "w")
);
$process = proc_open('console.exe', $descriptorspec, $pipes);

if (is_resource($process)) {
    stream_set_blocking($pipes[1], FALSE);
    $out = '';
    while (!feof($pipes[1])) {
       $out .= fgets($pipes[1], 1024);
   }
   echo $out;
}

On the line $out .= fgets ($ pipes [1], 1024); script hangs perfectly still, but why? Because the prog gives its output, and waits for further input, and we areare trying to to read from her ...

I went to http://php.net/manual/es/function.proc-open.php and read in one of the latest version, as a man because he worked with the client eDonkey. So, he read 2 characters return, in the case when he received ">" stop the cycle.

I, unfortunately, this is not suitable as prog sometimes in the output returns to the treatment itself. It turns out that the withdrawal will meet 2 times> and here's how to be, I do not know ....

Is there a timeout to fgetss? Or how to fix it?

================================================== Sorry, I used google to translate. Try to describe what I need, and where an error occurs.

Platform for execution of the script windows. Script is run in CLI mode.

The script must work with another console program. I run it:

$descriptorspec = array(
   0 => array("pipe", "r"),
   1 => array("pipe", "w"),
   2 => array("pipe", "w")
);
$process = proc_open('otherConsoleProgramm.exe', $descriptorspec, $pipes);

The program displays the message, and prompts you to enter a command. I need to copy the text, and depending on him to give her team. But I can not do it, so when reading the text, php hangs on the line $output = fgets($pipes[1], 1024);

How do I get the text that displays the program?

Unfortunately I can not read the output character by character, and wait for ">" character, as in the output console program> symbol can appear more than once.

link|improve this question

50% accept rate
1  
Please, if you can, post in English, or your best approximation of it. I have nothing against different languages at all (ich liebe Deutsch!), but you will get a better response from a question in English :-) – JamWaffles Dec 16 '10 at 11:07
I have edited to use a google translated version of the Russian text; less than ideal, but still much more useful than the original. – El Yobo Dec 16 '10 at 11:47
What is meant by the tag "proc" in this case? Is it one of the three meanings of "proc" listed in meta.stackoverflow.com/questions/107791/… ? – Andrew Grimm Oct 6 '11 at 22:38
feedback

1 Answer

WTF????

Using my psychic powers and crystal ball I have divined that you are trying to run this on a MSWindows platform - unfortunately, this is the only platform PHP runs on which does not support ncurses - which allows you to build complex forms using a terminal interface.

If you're programming is running in a CLI session, then you should not be opening console.exe to read input - RTFM - you should be reading from php://stdin.

link|improve this answer
Sorry for my English. I added the question, we naedyatsya that became clearer. – user499596 Dec 16 '10 at 12:50
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.