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.