PHP字符串开头和结尾的判断方法
【摘要】 1、知识准备
// 计算字符串长度
echo strlen("hello") . PHP_EOL;
// 5
// 截取字符串
echo substr("hello world!", 6, 5) . PHP_EOL;
// world
// 查找子串起始位置
echo strpos("hello world!", "world"). PHP_EOL;
// 6
1...
1、知识准备
// 计算字符串长度
echo strlen("hello") . PHP_EOL;
// 5
// 截取字符串
echo substr("hello world!", 6, 5) . PHP_EOL;
// world
// 查找子串起始位置
echo strpos("hello world!", "world"). PHP_EOL;
// 6
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
2、字符串开头结尾判断
//变量:
$s1 = "hello";
$s2 = "hello world!";
$s3 = "world hello";
//php判断字符串开头:
var_dump(substr($s2, 0, strlen($s1)) === $s1);
// bool(true)
var_dump(strpos($s2, $s1) === 0);
// bool(true)
//php判断字符串结尾:
var_dump(substr($s3, strpos($s3, $s1)) === $s1);
// bool(true)
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
3、函数封装
<?php
/**
* 字符串工具类
*/
class StringUtil{ public static function startsWith(string $string, string $subString) : bool{ return substr($string, 0, strlen($subString)) === $subString; // 或者 strpos($s2, $s1) === 0 } public static function endsWith(string $string, String $subString) : bool{ return substr($string, strpos($string, $subString)) === $subString; }
}
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
测试代码
var_dump(StringUtil::startsWith('hello world', 'hello'));
// bool(true)
var_dump(StringUtil::startsWith('hello world', 'world'));
// bool(false)
var_dump(StringUtil::endsWith('hello world', 'hello'));
// bool(false)
var_dump(StringUtil::endsWith('hello world', 'world'));
// bool(true)
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
文章来源: pengshiyu.blog.csdn.net,作者:彭世瑜,版权归原作者所有,如需转载,请联系作者。
原文链接:pengshiyu.blog.csdn.net/article/details/103968696
【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱:
cloudbbs@huaweicloud.com
- 点赞
- 收藏
- 关注作者
评论(0)