mamadzirone/strutils

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

v1.0.0 2021-09-07 17:28 UTC

This package is auto-updated.

Last update: 2024-09-28 12:41:32 UTC


README

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

安装

使用composer安装

composer require mamadzirone/strutils ‌

示例

    <?php

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

    use \QueraCollege\StringUtils\Str;

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