1. Go to this page and download the library: Download ballen/executioner 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/ */
ballen / executioner example snippets
use Ballen\Executioner\Executioner;
$run = new Executioner();
if (strtoupper(substr(PHP_OS, 0, 3)) === 'WIN') {
$run->setApplication('ipconfig'); // Server is Microsoft Windows!
} else {
$run->sudo() // Lets assume we must run 'sudo' to get the output...
->setApplication('ifconfig');
}
$run->execute();
// We'll simply just display the results as a plain text string...
echo $run->resultAsText();
use Ballen\Executioner\Executioner;
/**
* A shorthand version of using the factory method to create a new instance
* and then chaining the other methods and getting the response.
*/
$php_version = Executioner::make('php')
->addArgument('-v')
->execute()
->resultAsArray();
$words = explode(' ', $php_version[0]); // Split the words from the first line of the output!
$extracted_version_number = $words[1]; // The second word in the raw outputted line should be the version number :)
echo 'The extacted version number is: ' . $extracted_version_number . '';
// The extacted version number is: 7.0.0
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.