desmart / support
There is no license information available for the latest version (1.1.2) of this package.
Support package for DeSmart projects
1.1.2
2015-08-06 08:33 UTC
Requires
- ramsey/uuid: ^3.0@dev
Requires (Dev)
- phpspec/phpspec: ^2.2
- phpunit/phpunit: ^4.7
Suggests
- moontoast/math: Required for 32-bit processors
This package is not auto-updated.
Last update: 2026-03-06 17:24:56 UTC
README
Add desmart/support to composer.json:
{
"require": {
"desmart/support": "1.0.*"
}
}
Helpers
bool()
Converts string to boolean values using filter_var() with FILTER_VALIDATE_BOOLEAN.
When filter_var() is unable to convert it to boolean exception will be thrown.
Example usage:
<?php bool('1'); // true bool('yes'); // true bool('no'); // false ?>