Предупреждение: proc_open (): Отсутствует спецификатор дескриптора в массиве в C: \ … \ updatedots.php в строке 102
Я пытаюсь открыть блокнот, закрыв его через 2 секунды. Это мой код:
$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"]);
Любая идея, что означает эта ошибка и что ее вызывает?
Это не 0 => array("pipe" => "r")
а 0 => array("pipe", "r")
^^
Кроме того, при предоставлении имени файла вам необходимо указать режим использования. Это работает на моей машине:
$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"]);