我阅读了PHP Variable页面,它说明了分配变量的正确方法。
[a-zA-Z_\x7f-\xff][a-zA-Z0-9_\x7f-\xff]*
因此它是官方表达式的有效变量。
我的问题是如何制作字符串
$string = "not a valid php var, and @ or # or are not allowed";
process_string($string);//should return "notavalidphpvarandororarenotallowed"
所以我要求的是剥离任何不符合上述正则表达式条件的字符。
答案 0 :(得分:1)
$ str = preg_replace(“/ [^ a-zA-Z_ \ x7f- \ xff] /”,“”,$ str);