检查字符串是否包含逗号

时间:2016-05-11 07:05:04

标签: php string

检查字符串中是否包含逗号? 我有一个刺痛我怎么能检查它是否包含逗号分隔值

example : $search=6,7,8,9,10

2 个答案:

答案 0 :(得分:25)

php function strpos返回字符串的位置,如果它不是false或-1,那么你的字符串包含字符。

$searchString = ',';

if( strpos($search, $searchString) !== false ) {
     echo "Found";
}

答案 1 :(得分:0)

您可以尝试使用 preg_math strpos 方法。

$re = '/,/m';
$str = 'Hi...1,2,3,4';

preg_match_all($re, $str, $matches, PREG_SET_ORDER, 0);

// Print the entire match result
var_dump($matches);