Warning: proc_open(): Missing handle qualifier in array in C:\...\updatedots.php on line 102

I'm trying to open notepad the close it after 2 seconds. This is my code:

$descriptorspec = array(
    0 => array("pipe" => "r"),
    1 => array("pipe" => "w"),
    2 => array("file" => "logs/errors.txt")
);

// Create child and start process
$child = array("process" => null, "pipes" => array());
$child["process"] = proc_open("notepad.exe > nul 2>&1", $descriptorspec, $child["pipes"]);

Any idea what this error means and what causes it?

link|improve this question

What's line 102? – Lightness Races in Orbit May 18 '11 at 17:15
proc_open is line 102 – Codemonkey May 18 '11 at 18:35
Then what Stephan said. Regardless, my comment was an attempt to prompt you into providing more explicit information in your questions in future. – Lightness Races in Orbit May 18 '11 at 23:37
Just to clarify, since my code only contains one instance of proc_open I assumed it would be obvious that the error message is referring to it. That's how I thought of it anyway – Codemonkey Dec 22 '11 at 5:08
What I was trying to get at is that we prefer you post minimal testcases, and the error messages should come from those testcases. – Lightness Races in Orbit Dec 22 '11 at 9:51
show 2 more comments
feedback

1 Answer

up vote 2 down vote accepted

It is not 0 => array("pipe" => "r") but 0 => array("pipe", "r") ^^

Additionally, when giving a filename you need to specify the mode to use. This works on my machine:

$descriptorspec = array(
    0 => array("pipe", "r"),
    1 => array("pipe", "w"),
    2 => array("file", "logs/errors.txt", "a") ); 
// Create child and start process 
$child = array("process" => null, "pipes" => null); 
$child["process"] = proc_open("notepad.exe > nul 2>&1", $descriptorspec, $child["pipes"]); 
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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