复制代码 代码如下:
<?php
/*
判断字符串是否存在的函数
*/
function strexists($haystack, $needle) {
return !(strpos($haystack, $needle) === fal);//注意这里的”===”
}
/*
test
*/
$mystring = ‘abc’;
$findm逐渐e = ‘a’;
$pos = strpos($mystring, $findme);
// note our u of ===. simply == would not work as expected
// becau the position of ‘a’ was the 0th (first) character.
// 简单的使用 “==” 号是不会起作用的,需要使用 “===”,因为 a 第一次出现的位置为 0
if ($pos === fal) {
echo “the string ‘$findme’ was not found in the string ‘$mystring高情商说话'”;
} el {
ec经典语句个性签名ho “the string ‘$findme’ 国庆周记was found in the string ‘$mystring'”;
echo ” and exists at position $pos”;
}
// we can arch for the character, ignoring anything before the offt
// 在搜索字符的时候可以使用参数 offt 来指定偏移量
$newstring = ‘abcdef abcdef’;
$pos = strpos($newstring, ‘a’, 1); // $pos = 7, not 0国庆假期最后一天
?>
本文发布于:2023-04-06 13:28:37,感谢您对本站的认可!
本文链接:https://www.wtabcd.cn/fanwen/zuowen/404e33ad7219bbe1fc827f4fdb0cdc62.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文word下载地址:php下使用strpos需要注意 === 运算符.doc
本文 PDF 下载地址:php下使用strpos需要注意 === 运算符.pdf
留言与评论(共有 0 条评论) |