banu / ini-get-wrapper
ini_get() 方法的便捷包装器
v1.0.1
2014-09-15 13:12 UTC
Requires (Dev)
- phpunit/phpunit: 3.7.*
This package is not auto-updated.
Last update: 2024-09-10 00:33:22 UTC
README
使用说明
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)