desmart/support

此包最新版本(1.1.2)的许可证信息不可用。

DeSmart项目的支持包

1.1.2 2015-08-06 08:33 UTC

This package is not auto-updated.

Last update: 2024-09-20 10:07:24 UTC


README

desmart/support 添加到 composer.json

{
  "require": {
    "desmart/support": "1.0.*"
  }
}

辅助工具

bool()

使用 filter_var()FILTER_VALIDATE_BOOLEAN 将字符串转换为布尔值。
filter_var() 无法将其转换为布尔值时,将抛出异常。

示例用法

<?php
bool('1'); // true
bool('yes'); // true
bool('no'); // false
?>