假设我在
PHP中有一个数组:
$array = array("apple","banana","cap","dog",etc..) up to 80 values.
和一个字符串变量:
$str = "abc";
如果我想检查这个字符串($str)是否存在于数组中,我使用preg_match函数.这是这样的:
$isExists = preg_match("/$str/",$array); if ($isExists){ echo "Its exists"; } else { echo "Not exixts" } ;
是正确的方法吗?如果阵列越来越大,会很慢吗?还有其他方法吗?我试图缩小我的数据库流量.希望你们能帮忙..
得到答案后:
如果我有两个或更多字符串进行比较?怎么做?
bool in_array ( mixed $needle,array $haystack [,bool $strict ] )