hassanhs97/string-utils

简单的字符串工具,便于处理字符串

v1.0.0 2023-03-14 08:21 UTC

This package is not auto-updated.

Last update: 2024-09-25 14:17:00 UTC


README

简单的字符串工具,便于处理字符串

安装

使用composer安装

composer require hstring/string-utils ‌

示例

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

use \HString\StringUtils\Str;

var_dump(Str::contains('abcd', ['ab', 'x']));