25/02
2016
dev-master
9999999-devExecute system commands.
The Requires
by Payam Naderi
Execute system commands.
Execute system commands., (*1)
STDIN, (*2)
// Execute Command Line: $exec = new ExeProc(); $re = $exec->exec("md5sum"); // Open Http Socket Connection: $tcpClient = new \Poirot\Stream\WrapperClient('http://www.raya-media.com:80', 'r'); $stream = new \Poirot\Stream\Streamable($tcpClient->getConnect()); # pipe all http data as input for command(md5sum) $stream->pipeTo($re->pipes()->stdin()); # close write input data $re->pipes()->stdin()->getResource()->close(); // Read Output result, as stream: $md5 = $re->pipes()->stdout()->readLine(); if ($re->pipes()->to(iExecDescriptor::XCDSC_STDERR) !== '') { // get stderr messages // ... } // Close Process: $re->close(); var_dump($md5); // md5 hash of website content: fa59c70d613d4d0085b4d869c46288c9
Execute system commands.