Package Data | |
---|---|
Maintainer Username: | seffeng |
Maintainer Contact: | save.zxf@gmail.com (seffeng) |
Package Create Date: | 2022-08-25 |
Package Last Update: | 2024-02-01 |
Language: | PHP |
License: | MIT |
Last Refreshed: | 2024-11-20 03:01:14 |
Package Statistics | |
---|---|
Total Downloads: | 1,371 |
Monthly Downloads: | 21 |
Daily Downloads: | 2 |
Total Stars: | 0 |
Total Watchers: | 1 |
Total Forks: | 0 |
Total Open Issues: | 0 |
# 安装
$ composer require seffeng/str-helper
|---src
| | Str.php
| |---Traits
| StrTrait.php
|---tests
| StrTest.php
/**
* TestController.php
* 示例
*/
namespace App\Http\Controllers;
use Seffeng\StrHelper\Str;
class TestController extends Controller
{
public function index()
{
var_dump(Str::generateChatCode(6));
$value = 'a,342 , c, def,';
print_r(Str::toArray($value, ',', ' '));
}
}
1、更多示例请参考 tests 目录下测试文件。