satheez / php-helper-functions
有用的PHP辅助函数
0.0.1
2019-12-20 06:10 UTC
Requires
- php: ^7.2
- ext-json: *
- ext-mbstring: *
- fzaninotto/faker: ^1.9
Requires (Dev)
- phpunit/phpunit: ^7.0
This package is auto-updated.
Last update: 2024-09-18 16:15:18 UTC
README
该库 satheez/php-helper-functions 是一组有用的PHP辅助函数。
安装
composer require satheez/php-helper-functions
示例
<?php use Sa\Helper\Validate; if( Validate::isValidString($string) ) { // Do something here }
致谢
此库利用以下出色且知名的库:
测试
安装
使用composer安装最新的 satheez/php-helper-functions 库
composer require satheez/php-helper-functions
同时确保要求您的composer自动加载文件
require __DIR__ . '/vendor/autoload.php';