carloscarucce/substr-position
Composer 安装命令:
composer require carloscarucce/substr-position
包简介
substr_position function for php 7.1+
README 文档
README
Installation
composer require carloscarucce/substr-position
Examples
Examples:
//Basic usage $original = 'test'; $valueToAdd = 'abc'; substr_position($original, $valueToAdd, 2); //string(5) "teabc" //Limiting result size substr_position("test", "abc", 2, 4); //string(4) "teab" //Adding to a position beyond original string maxlength substr_position("test", "abc", 10); //string(13) "test abc"
统计信息
- 总下载量: 184
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2022-04-12