lemanwang / php-tools
php 常用的工具包,
Installs: 14
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/lemanwang/php-tools
Requires
- php: >=5.4
Requires (Dev)
- php: >=5.4
README
版本兼容性
- 原则上,版本更新不影响 老版本的任何使用。
环境要求
- PHP >= 5.4
安装
$ composer require lemanwang/php-tools -vvv
使用
<?php require_once __DIR__."/vendor/autoload.php"; //示例 use Lemanwang\PhpTools\PhpTools; use Lemanwang\PhpTools\TestTools; $phpTools = new PhpTools(); $test = new TestTools(); $phpTools->hello(); $test->hello();