PHP检查字符串是否只包含0-9和其他一些字符

时间:2013-01-06 00:10:38

标签: php

我想创建一个函数,检查字符串是否只包含0-9 / + * - {}(空格)字符。这类似于谷歌的计算器查询检查。

function is_calculation($str) {
if (???) {return true;}
return false;
}

它需要像/ [0-9 * - / + [] {}()] /

1 个答案:

答案 0 :(得分:2)

if (preg_match('/^[0-9\ \*\/\+\[\]\{\}\(\)\ -]+$/',$str)) {