desmart/support

There is no license information available for the latest version (1.1.2) of this package.

Support package for DeSmart projects

Installs: 5 760

Dependents: 1

Suggesters: 0

Security: 0

Stars: 0

Watchers: 4

Forks: 0

Open Issues: 1

pkg:composer/desmart/support

1.1.2 2015-08-06 08:33 UTC

This package is not auto-updated.

Last update: 2025-10-03 15:08:36 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
?>