Heim >Backend-Entwicklung >PHP-Tutorial >php判断一个字符串是不是含有指定的字符(求高效写法)

php判断一个字符串是不是含有指定的字符(求高效写法)

WBOY
WBOYOriginal
2016-06-13 12:25:56920Durchsuche

php判断一个字符串是否含有指定的字符(求高效写法)

本帖最后由 qq_22301097 于 2015-10-14 20:55:23 编辑 php判断一个字符串是否含有指定的字符。例:

$str = "pussssasasasds";

判断$str中是否含有abchjgkoqtvwxyz 任意一个字符 也就说判断str是否包含a或者b或者c或者h或者j等等。不区分大小写。求最高效的写法多谢。。

我自己能想到的就是if else... 感觉太笨了 求一个开阔点的思路 好用的高效的方法
------解决思路----------------------
用正则
if(preg_match('/[abchjgkoqtvwxyz]/i', $str)) {<br />  echo '包含';<br />}
Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn