PHP 中字串的二進位轉換:綜合指南
在PHP 中,有一些有效的方法可以將字串與二進位格式相互轉換。在處理密碼儲存或其他敏感資料時,這是至關重要的方面。一種方法是利用 hash-hmac() 函數。
使用 hash-hmac() 函數
hash-hmac() 函數結合了以下函數雜湊和二進位輸出。它將字串作為輸入,使用指定的演算法(例如 SHA256)對其進行雜湊處理,並以二進位格式傳回結果。
<code class="php">$password = 'MySecret'; $hashedPassword = hash_hmac('sha256', $password, 'Key'); // Store the binary hashed password in a database</code>
替代方法:pack() 和 base_convert()
另一種方法涉及使用 pack() 和 base_convert() 函數。 pack() 透過將字串解釋為一系列十六進位值來將字串轉換為二進位。 base_convert() 將二進位表示形式轉換回字串。
範例
<code class="php">// Convert string to binary $binary = pack('H*', 'Stack'); echo base_convert($binary, 16, 2); // 0101001101110100011000010110001101101011 // Convert binary to string $string = pack('H*', base_convert('0101001101110100011000010110001101101011', 2, 16)); echo $string; // Stack</code>
以上是如何在 PHP 中將字串轉換為二進位:綜合指南的詳細內容。更多資訊請關注PHP中文網其他相關文章!