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

This package is not auto-updated.

Last update: 2024-05-03 08:27:31 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
?>