$ar = array('('=>'',')'=>'','#'=>'','+'=>'-');
$str = strtr($str,$ar);數組
strtr ( string $str , string $from , string $to )ide
該函數返回 str 的一個副本,並將在 from 中指定的字符轉換爲 to 中相應的字符。函數
若是 from 與 to 長度不相等,那麼多餘的字符部分將被忽略。spa
參數 replace_pairs 能夠用來取代 to 和 from 參數,由於它是以 array('from' => 'to', ...) 格式出現的數組。ip