You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
iotcat 5104022021 auto update 5 years ago
..
src auto update 5 years ago
.scrutinizer.yml auto update 5 years ago
LICENSE auto update 5 years ago
README.md auto update 5 years ago
composer.json auto update 5 years ago
phpunit.xml.dist auto update 5 years ago

README.md

Usage

require __DIR__ . '/vendor/autoload.php';
$ini = new bantu\IniGetWrapper\IniGetWrapper;
var_dump(
  $ini->getString('does-not-exist'),
  $ini->getString('default_mimetype'),
  $ini->getBool('display_errors'),
  $ini->getNumeric('precision'),
  $ini->getBytes('memory_limit')
);
NULL
string(9) "text/html"
bool(false)
int(14)
int(134217728)