当前位置: 网学 > 编程文档 > PHP > 正文

php下使用strpos需要注意 === 运算符

来源:Http://myeducs.cn 联系QQ:点击这里给我发消息 作者: 用户投稿 来源: 网络 发布时间: 13/06/21

网学网PHP编辑为广大网友搜集整理了:php下使用strpos需要注意 === 运算符绩等信息,祝愿广大网友取得需要的信息,参考学习

复制代码 代码如下:
<?php
/*
判断字符串是否存在的函数
*/
function strexists($haystack, $needle) {
return !(strpos($haystack, $needle) === FALSE);//注意这里的"==="
}
/*
Test
*/
$mystring = ''abc'';
$findme = ''a'';
$pos = strpos($mystring, $findme);

// Note our use of ===. Simply == would not work as expected
// because the position of ''a'' was the 0th (first) character.
// 简单的使用 "==" 号是不会起作用的,需要使用 "===",因为 a 第一次出现的位置为 0
if ($pos === false) {
echo "The string ''$findme'' was not found in the string ''$mystring''";
} else {
echo "The string ''$findme'' was found in the string ''$mystring''";
echo " and exists at position $pos";
}

// We can search for the character, ignoring anything before the offset
// 在搜索字符的时候可以使用参数 offset 来指定偏移量
$newstring = ''abcdef abcdef'';
$pos = strpos($newstring, ''a'', 1); // $pos = 7, not 0
?>

网学推荐

免费论文

原创论文

浏览:
设为首页 | 加入收藏 | 论文首页 | 论文专题 | 设计下载 | 网学软件 | 论文模板 | 论文资源 | 程序设计 | 关于网学 | 站内搜索 | 网学留言 | 友情链接 | 资料中心
版权所有 QQ:3710167 邮箱:3710167@qq.com 网学网 [Myeducs.cn] 您电脑的分辨率是 像素
Copyright 2008-2015 myeducs.Cn www.myeducs.Cn All Rights Reserved
湘ICP备09003080号