github.com/SonsOfPHP/assert
主页
源代码
问题
论坛
文档
资助包维护! JoshuaEstes Tidelift
安装: 106
依赖项: 0
建议者: 0
安全: 0
星标: 0
关注者: 0
分支: 0
Requires
Requires (Dev)
None
Suggests
Provides
Conflicts
Replaces
MIT 30464b84276459ec96b3aac1dcbc3b4d998a73b0
assert
This package is auto-updated.
Last update: 2024-09-10 19:47:34 UTC
composer require sonsofphp/assert
<?php use SonsOfPHP\Component\Assert\Assert; Assert::string('test'); // returns true Assert::string(false); // throws exception Assert::disable(); Assert::string(1234); // returns false