1. Go to this page and download the library: Download gcworld/globals 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/ */
gcworld / globals example snippets
use GCWorld\Globals\Globals;
$globals = new Globals();
$_GET['page'] = '42';
$_GET['email'] = '[email protected]';
$page = $globals->int()->GET('page');
$email = $globals->email()->GET('email');