/*** 查询字符是否存在于某字符串** @param $haystack 字符串* @param $needle 要查找的字符* @return bool*/function str_exists($haystack, $needle){return !(strpos($haystack, $needle) === FALSE);}