webignition / disallowed-character-terminated-string
以一个或多个不允许的字符结尾的字符串
2.0
2019-12-20 15:52 UTC
Requires
- php: >=7.2
Requires (Dev)
- phpstan/phpstan: ^0.12.3
- phpunit/phpunit: ~8.0
- squizlabs/php_codesniffer: ^3.5
This package is auto-updated.
Last update: 2024-09-21 02:35:38 UTC
README
概述
当字符串达到指定的一个或多个终止字符中的第一个时,字符串将被终止。
当需要删除行尾注释或丢弃换行符之后的任何内容时非常有用。
示例用法
<?php use webignition\DisallowedCharacterTerminatedString\TerminatedString; $string = new TerminatedString('value #comment', ['#']); $this->assertEquals('value ', $string->get());
安装和更新
composer require webignition/disallowed-character-terminated-string
composer update webignition/disallowed-character-terminated-string
测试
运行测试
composer test
运行代码质量检查
composer cs
运行静态分析
composer static-analysis
运行所有测试和分析
composer ci
查看travis上的项目以获取最新的构建状态,或者自己尝试运行测试。