php實現二進位和文本相互轉換的方法,_PHP教程

來源:互聯網
上載者:User

php實現二進位和文本相互轉換的方法,


本文執行個體講述了php實現二進位和文本相互轉換的方法。分享給大家供大家參考。具體如下:

這段程式碼封裝含兩個函數,bin2text,二進位轉換為文本,text2bin,文本轉換成二進位

<?phpfunction bin2text($bin_str){ $text_str = ''; $chars = explode("\n",chunk_split(str_replace("\n",'',$bin_str),8)); $_I = count($chars); for($i = 0; $i < $_I; $text_str .= chr(bindec($chars[$i])), $i ); return $text_str;}function text2bin($txt_str){ $len = strlen($txt_str); $bin = ''; for($i = 0; $i < $len; $i ) {  $bin .= strlen(decbin(ord($txt_str[$i])))<8?str_pad(decbin(ord($txt_str[$i])),8,0,STR_PAD_LEFT):decbin(ord($txt_str[$i])); } return $bin;}print text2bin('How are you gentlements?');?>

希望本文所述對大家的php程式設計有所協助。

http://www.bkjia.com/PHPjc/986075.htmlwww.bkjia.comtruehttp://www.bkjia.com/PHPjc/986075.htmlTechArticlephp實現二進位和文本相互轉換的方法, 本文執行個體講述了php實現二進位和文本相互轉換的方法。分享給大家供大家參考。具體如下: 這段代...

  • 聯繫我們

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