PHP二進位與字串之間的相互轉換_PHP教程

來源:互聯網
上載者:User

PHP二進位與字串之間的相互轉換


 [代碼]php代碼:

  

  header("Content-type: text/html; charset=utf-8");

  /**

  * 將字串轉換成二進位

  * @param type $str

  * @return type

  */

  function StrToBin($str){

  //1.列出每個字元

  $arr = preg_split('/(?

  //2.unpack字元

  foreach($arr as &$v){

  $temp = unpack('H*', $v); $v = base_convert($temp[1], 16, 2);

  unset($temp);

  }

  return join(' ',$arr);

  }

  /**

  * 講二進位轉換成字串

  * @param type $str

  * @return type

  */

  function BinToStr($str){

  $arr = explode(' ', $str);

  foreach($arr as &$v){

  $v = pack("H".strlen(base_convert($v, 2, 16)), base_convert($v, 2, 16));

  }

  return join('', $arr);

  }

  echo StrToBin("php二次開發:www.php2.cc");;

  echo '
';

  echo BinToStr("1110000 1101000 1110000 111001001011101010001100 111001101010110010100001 111001011011110010000000 111001011000111110010001 111011111011110010011010 1110111 1110111 1110111 101110 1110000 1101000 1110000 110010 101110 1100011 1100011");

http://www.bkjia.com/PHPjc/1051929.htmlwww.bkjia.comtruehttp://www.bkjia.com/PHPjc/1051929.htmlTechArticlePHP二進位與字串之間的相互轉換 [代碼]php代碼: ?php header(Content-type: text/html; charset=utf-8); /** * 將字串轉換成二進位 * @param type $str * @r...

  • 相關文章

    聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.