php過濾ascii控制字元的方法

來源:互聯網
上載者:User

   還記得以前在工作中,將爬來的其它網站的資料導到xml。但是會遇到一個問題:即網頁會有ascII的控制字元。一開始以為是別人為了防止採集而加入的,然後發現一個就往過濾表裡加一個。直到慢慢發現,他們都是ascii表裡的字元。找到原因了,就好解決了。

  /**

  * 根據ascii碼過濾控制字元

  * @param type $string

  */

  public static function special_filter($string)

  {

  if(!$string) return '';

  $new_string = '';

  for($i =0; isset($string[$i]); $i++)

  {

  $asc_code = ord($string[$i]); //得到其asc碼

  //以下代碼旨在過濾非法字元

  if($asc_code == 9 $asc_code == 10 $asc_code == 13){

  $new_string .= ' ';

  }

  else if($asc_code > 31 && $asc_code != 127){

  $new_string .= $string[$i];

  }

  }

  return trim($new_string);

  }

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.