PHP code example of gerardojbaez / php-checkup
1. Go to this page and download the library: Download gerardojbaez/php-checkup 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/ */
gerardojbaez / php-checkup example snippets
use \Gerardojbaez\PhpCheckup\Checks\Php\ExtensionIsLoaded;
use \Gerardojbaez\PhpCheckup\Manager;
use \Gerardojbaez\PhpCheckup\Runner;
$manager = new Manager;
// Register checks
$manager->add(
(new Check('Required PHP extension "mbstring" is installed', new ExtensionIsLoaded('mbstring')))
->group('