32 lines
557 B
PHP
32 lines
557 B
PHP
|
<?php
|
||
|
declare(strict_types=1);
|
||
|
/**
|
||
|
* 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
|
||
|
*/
|
||
|
|
||
|
namespace App\Helpers;
|
||
|
|
||
|
/**
|
||
|
* 字符串助手类
|
||
|
* Class StringHelper
|
||
|
*
|
||
|
* @package App\Helper
|
||
|
*/
|
||
|
class StringHelper
|
||
|
{
|
||
|
public function jsonEncode()
|
||
|
{
|
||
|
|
||
|
}
|
||
|
|
||
|
public function jsonDecode()
|
||
|
{
|
||
|
|
||
|
}
|
||
|
}
|