Unix and Linux Discussions Tagged with address |
|
Thread / Thread Starter |
Last Post |
Replies |
Views |
Forum |
|
|
|
0 |
7,130 |
Cybersecurity |
|
|
|
1 |
3,011 |
UNIX for Beginners Questions & Answers |
|
|
|
7 |
11,891 |
Cybersecurity |
|
|
|
4 |
7,801 |
What is on Your Mind? |
|
|
|
8 |
3,021 |
UNIX for Beginners Questions & Answers |
|
|
|
1 |
3,101 |
Programming |
|
|
|
1 |
4,323 |
Shell Programming and Scripting |
|
|
|
8 |
5,664 |
UNIX for Dummies Questions & Answers |
|
|
|
0 |
2,133 |
OS X Support RSS |
|
|
|
0 |
2,904 |
UNIX and Linux Applications |
|
|
|
4 |
12,998 |
UNIX and Linux Applications |
|
|
|
1 |
7,321 |
UNIX for Dummies Questions & Answers |
|
|
|
2 |
9,744 |
IP Networking |
|
|
|
3 |
35,082 |
OS X (Apple) |
|
|
|
3 |
9,318 |
UNIX for Advanced & Expert Users |
|
|
|
2 |
3,466 |
IP Networking |
|
|
|
6 |
13,263 |
Solaris |
|
|
|
0 |
4,070 |
Programming |
|
|
|
1 |
4,251 |
UNIX for Dummies Questions & Answers |
|
|
|
1 |
5,378 |
Post Here to Contact Site Administrators and Moderators |
|
|
|
5 |
20,127 |
UNIX for Dummies Questions & Answers |
|
|
|
4 |
9,336 |
Programming |
|
|
|
3 |
5,398 |
IP Networking |
|
|
|
4 |
7,701 |
UNIX for Dummies Questions & Answers |
|
|
|
1 |
13,858 |
IP Networking |
|
|
|
2 |
9,314 |
UNIX for Dummies Questions & Answers |
|
|
|
4 |
222,498 |
UNIX for Dummies Questions & Answers |
|
|
|
1 |
9,465 |
UNIX for Dummies Questions & Answers |
|
|
|
3 |
10,643 |
UNIX for Advanced & Expert Users |
|
|
|
7 |
10,219 |
UNIX for Advanced & Expert Users |
|
|
|
7 |
177,248 |
UNIX for Dummies Questions & Answers |
|
|
|
8 |
31,185 |
UNIX for Dummies Questions & Answers |
|
|
|
1 |
3,917 |
UNIX for Advanced & Expert Users |
|
|
|
1 |
6,445 |
IP Networking |
|
|
|
1 |
5,544 |
IP Networking |
|
|
|
5 |
6,053 |
IP Networking |
|
|
|
2 |
3,033 |
UNIX for Dummies Questions & Answers |
|
|
|
10 |
11,673 |
UNIX for Dummies Questions & Answers |
|
|
|
1 |
3,928 |
Post Here to Contact Site Administrators and Moderators |
|
|
|
4 |
7,222 |
IP Networking |
INET_PTON(3) 1 INET_PTON(3)
inet_pton - Converts a human readable IP address to its packed in_addr representation
SYNOPSIS
string inet_pton (string $address)
DESCRIPTION
This function converts a human readable IPv4 or IPv6 address (if PHP was built with IPv6 support enabled) into an address family appropri-
ate 32bit or 128bit binary structure.
PARAMETERS
o $address
- A human readable IPv4 or IPv6 address.
RETURN VALUES
Returns the in_addr representation of the given $address, or FALSE if a syntactically invalid $address is given (for example, an IPv4
address without dots or an IPv6 address without colons).
EXAMPLES
Example #1
inet_pton(3) Example
<?php
$in_addr = inet_pton('127.0.0.1');
$in6_addr = inet_pton('::1');
?>
CHANGELOG
+--------+---------------------------------------------------+
|Version | |
| | |
| | Description |
| | |
+--------+---------------------------------------------------+
| 5.3.0 | |
| | |
| | This function is now available on Windows plat- |
| | forms. |
| | |
+--------+---------------------------------------------------+
SEE ALSO
ip2long(3), long2ip(3), inet_ntop(3).
PHP Documentation Group INET_PTON(3)