queracollege/string-utils

简单的字符串工具,用于更容易地处理字符串

v1.0.0 2021-02-19 20:36 UTC

This package is not auto-updated.

Last update: 2024-09-29 12:26:09 UTC


README

简单的字符串工具,用于更容易地处理字符串

安装

使用 composer 安装

composer require queracollege/string-utils

示例

<?php

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

use \QueraCollege\StringUtils\Str;

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