用什么方法来判断字符串是否存在的函数

Posted 服务器-老张

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了用什么方法来判断字符串是否存在的函数相关的知识,希望对你有一定的参考价值。

首先应该知道 strpos 函数可能返回布尔值 FALSE,但也可能返回一个与 FALSE 等值的非布尔值,例如 0 或者""。我们应使用 === 运算符来测试本函数的返回值。

<?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) 2881064151{ 
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 
?>

以上是关于用什么方法来判断字符串是否存在的函数的主要内容,如果未能解决你的问题,请参考以下文章

PHP MYSQL 怎么判断某个表的字段是不是存在

java 怎么判断一个集合是不是含有某个值

用递归调用来判断字符串是否是回文

C++ 如何判断路径是文件还是目录

JS判断字符串中是否存在某个字符

freemarker怎么判断变量是不是等于字符串