php ipv6轉ipv4的方法:1、建立一個PHP範例檔;2、定義一個變數「$ipv6 = '2a01:4f8:190:4413::2';」;3、透過hexdec和substr函數將ipv6位址轉為ipv4位址即可。
本文操作環境:Windows7系統、PHP7.1、Dell G3電腦。
php ipv6怎麼轉ipv4?
php程式碼將ipv6位址轉為ipv4位址
程式碼如下:
$ipv6 = '2a01:4f8:190:4413::2'; $ipv4 = hexdec(substr($ipv6, 0, 2)). "." . hexdec(substr($ipv6, 2, 2)). "." . hexdec(substr($ipv6, 5, 2)). "." . hexdec(substr($ipv6, 7, 2)); echo $ipv4;
hexdec () 函數把十六進位轉換為十進位。
語法:hexdec(hex_string)
#substr() 函數傳回字串的一部份。
註解:若 start 參數是負數且 length 小於或等於 start,則 length 為 0。
推薦學習:《PHP影片教學》
以上是php ipv6怎麼轉ipv4的詳細內容。更多資訊請關注PHP中文網其他相關文章!