PHP中的替換strtr

 $ar  = array('('=>'',')'=>'','#'=>'','+'=>'-');
  $str = strtr($str,$ar);數組

 

 

strtr ( string $str , string $from , string $to )ide

string strtr ( string $str , array $replace_pairs )

該函數返回 str 的一個副本,並將在 from 中指定的字符轉換爲 to 中相應的字符。函數

若是 fromto 長度不相等,那麼多餘的字符部分將被忽略。spa

參數 replace_pairs 能夠用來取代 tofrom 參數,由於它是以 array('from' => 'to', ...) 格式出現的數組。ip

相關文章
相關標籤/搜索