PHP in_array_r($ needle,$ haystack,$ strict = true);

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP in_array_r($ needle,$ haystack,$ strict = true);相关的知识,希望对你有一定的参考价值。

// Recursive in_array functie
function in_array_r($needle, $haystack, $strict = true) {
	foreach ($haystack as $item) {
		if (($strict ? $item === $needle : $item == $needle) || (is_array($item) && in_array_r($needle, $item, $strict))) {
			return true;
		}
	}
	return false;
}

以上是关于PHP in_array_r($ needle,$ haystack,$ strict = true);的主要内容,如果未能解决你的问题,请参考以下文章

PHP Xpath:获取所有包含 needle 的 href 值

PHP - 实现 strStr()

PHP strstr 字符串函数

php in_array函数的使用

php strpos() 查找字符串首次出现的位置

php strpos返回字符串首次出现的位置