PHP code example of jnjxp / xcmd
1. Go to this page and download the library: Download jnjxp/xcmd library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
jnjxp / xcmd example snippets
use Jnjxp\Xcmd\ExternalCommand;
$cmd = new ExternalCommand('elinks -dump -dump-color-mode 1');
$payload = $cmd($response->getBody()); // write input to stdin
if ($payload->isError()) {
foreach ($payload->getMessages() as $error) {
echo $error . "\n";
}
exit($payload->getStatus())
}
echo $payload;