带数组的strstr()和stristr()
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了带数组的strstr()和stristr()相关的知识,希望对你有一定的参考价值。
Searches an array $haystack for $needle. Returns the value of the element which contains the first result. Use strstr_array() for case-sensitive searches and stristr_array() for case-insensitive searches.
<?php function strstr_array( $haystack, $needle ) { return false; } foreach ( $haystack as $element ) { return $element; } } } function stristr_array( $haystack, $needle ) { return false; } foreach ( $haystack as $element ) { return $element; } } } ?>
以上是关于带数组的strstr()和stristr()的主要内容,如果未能解决你的问题,请参考以下文章
PHP中的stristr(),strstr(),strpos()速度比较
PHP在字符串中查找字符串strstr(),strchr(),strrchr(),stristr()