字符串去掉多余的空字符制表符之类的特殊符号

 

function commandStr($str){
    $str = trim($str);
    $str = preg_replace("/\t/", "", $str);
    $str = preg_replace("/\r\n/", "", $str);
    $str = preg_replace("/\n/", "", $str);
    $str = preg_replace("/ /", "", $str);
    $str = preg_replace("/  /", "", $str);
    return $str;
}

你可能感兴趣的:(php)