hyperf-chat/app/Helper/StringHelper.php

32 lines
556 B
PHP
Raw Normal View History

2020-12-03 16:22:55 +08:00
<?php
declare(strict_types=1);
2020-12-26 21:33:40 +08:00
/**
* This is my open source code, please do not use it for commercial applications.
* For the full copyright and license information,
* please view the LICENSE file that was distributed with this source code
*
* @author Yuandong<837215079@qq.com>
* @link https://github.com/gzydong/hyperf-chat
*/
2020-12-03 16:22:55 +08:00
namespace App\Helper;
/**
* 字符串助手类
* Class StringHelper
2021-04-20 16:30:57 +08:00
*
2020-12-03 16:22:55 +08:00
* @package App\Helper
*/
class StringHelper
{
2021-08-28 16:11:38 +08:00
public function jsonEncode()
{
}
public function jsonDecode()
{
}
2020-12-03 16:22:55 +08:00
}