satheez/php-helper-functions

有用的PHP辅助函数

0.0.1 2019-12-20 06:10 UTC

This package is auto-updated.

Last update: 2024-09-18 16:15:18 UTC


README

该库 satheez/php-helper-functions 是一组有用的PHP辅助函数。

Latest Stable Version Minimum PHP Version Build Status License Scrutinizer Code Quality

安装

composer require satheez/php-helper-functions

示例

<?php

use Sa\Helper\Validate;

if( Validate::isValidString($string) ) {
   // Do something here
}

致谢

此库利用以下出色且知名的库:

测试

所有函数都经过多个单元测试和PHP版本测试。构建状态

安装

使用composer安装最新的 satheez/php-helper-functions

composer require satheez/php-helper-functions

同时确保要求您的composer自动加载文件

require __DIR__ . '/vendor/autoload.php';