目录

PHP inet_ntop() 函数

❮ PHP 网络参考

示例

将打包地址转换为可读格式:

<?php
$addr = chr(127) . chr(0) . chr(1) . chr(1);
$exp = inet_ntop($addr);
echo $exp;
?>
亲自试一试 »

定义和用法

inet_ntop() 函数将 32 位 IPv4 或 128 位 IPv6 地址转换为可读格式。

语法

inet_ntop( address)

参数值

Parameter Description
address Required. Specifies a 32bit IPv4 or 128bit IPv6 address

技术细节

返回值: 关于成功的人类可读的演讲。失败时为 FALSE
PHP 版本: 5.1+
PHP 变更日志: PHP 5.3:现在可在 Windows 平台上使用

❮ PHP 网络参考