定制 withinboredom/null-cast 二次开发

按需修改功能、优化性能、对接业务系统,提供一站式技术支持

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

withinboredom/null-cast

最新稳定版本:v1.0.0

Composer 安装命令:

composer require withinboredom/null-cast

包简介

Casting, but with null!

README 文档

README

When using strict types, null is often erased when casting, introducing subtle bugs. This library allows you to replace your casts with these simple functions that retain null, but otherwise perform the desired cast.

Installation

composer require withinboredom/null-cast

Usage

use function Withinboredom\NullCast\boolval;
use function Withinboredom\NullCast\floatval;
use function Withinboredom\NullCast\intval;
use function Withinboredom\NullCast\stringval;

boolval('true') === true;
boolval(null) === null;

floatval('12.34') === 12.34;
floatval(null) === null;

intval(true) === 1;
intval(null) === null;

stringval(123) === '123';
stringval(null) === null;

统计信息

  • 总下载量: 2
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 0
  • 点击次数: 0
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 0
  • Watchers: 1
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2024-01-27