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?
proc_open
I assumed it would be obvious that the error message is referring to it. That's how I thought of it anyway – Maghutte