PHP code example of eloquent / liftoff
1. Go to this page and download the library: Download eloquent/liftoff 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/ */
eloquent / liftoff example snippets
use Eloquent\Liftoff\Launcher;
$launcher = new Launcher;
$launcher->launch('/path/to/file.html');
$launcher->launch('/path/to/file.html', array('--with', '--arguments'));
$launcher->launch('http://example.org/');
$launcher->launch('http://example.org/', array('--with', '--arguments'));