shahyarrrr/test-package

简化字符串处理的工具

dev-main 2024-07-09 10:07 UTC

This package is auto-updated.

Last update: 2024-09-09 10:28:39 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']));