CFLib.org – Common Function Library Project

long2ip(longip)

Last updated January 9, 2009

Version: 0 | Requires: ColdFusion 8 | Library: NetLib

 
Rated 0 time(s). Average Rating: 0

Description:
Generates an (IPv4) Internet Protocol dotted address (aaa.bbb.ccc.ddd) from the proper address representation. Returns 0 if error occurs.

Return Values:
Returns the IP as a string.

Example:

view plain print about
long2ip(3401190660) = 202.186.13.4

Parameters:

Name Description Required
longip Numeric version of IP address. Yes

Full UDF Source:

view plain print about
<cfscript>
/**
 * Generates an (IPv4) Internet Protocol dotted address (aaa.bbb.ccc.ddd) from the proper address representation.
 * 
 * @param longip      Numeric version of IP address. (Required)
 * @return Returns the IP as a string. 
 * @author Troy Pullis (tpullis@yahoo.com) 
 * @version 0, January 9, 2009 
 */

function long2ip(longip) {
    var ip = "";
    var i = "";
    if (longip 
< 0 || longip > 4294967295) 
        return 0;
    for (i=3;i>
=0;i--) {
        ip = ip & int(longip / 256^i);
        longip = longip - int(longip / 256^i) * 256^i;
        if (i>0) 
            ip = ip & ".";
    }
    return ip;
}
</cfscript>
blog comments powered by Disqus

Search CFLib.org


Latest Additions

Tayo Akinmade Tayo Akinmade added
arrayTrim
3 day(s) ago

Will Belden Will Belden added
longTime
9 day(s) ago

James Sleeman James Sleeman added
quickSort
19 day(s) ago

Ben Forta Ben Forta added
GetHostAddress
22 day(s) ago

Top Rated

Darwan Leonardo Sitepu EksporSQLData
Rated 5.0, 16 time(s)

Darwan Leonardo Sitepu backupDatabase
Rated 5.0, 13 time(s)

Barney Boisvert indentXml
Rated 5.0, 10 time(s)

Kevin Pepperman generateSsccAsn
Rated 5.0, 4 time(s)

Created by Raymond Camden / Design by Justin Johnson