API16

Difference between revisions of "JLDAP/ipToNetAddress"

From Joomla! Documentation

< API16:JLDAP
(New page: ===Description=== Converts a dot notation IP address to net address (e.g. for Netware, etc) <span class="editsection" style="font-size:76%;"> <nowiki>[</nowiki>[[Description:JLDAP/ipT...)
 
m (removing red link to edit, no existant pages)
Line 3: Line 3:
  
 
<span class="editsection" style="font-size:76%;">
 
<span class="editsection" style="font-size:76%;">
<nowiki>[</nowiki>[[Description:JLDAP/ipToNetAddress|Edit Descripton]]<nowiki>]</nowiki>
+
<nowiki>[<! removed edit link to red link >]</nowiki>
 
</span>
 
</span>
  
{{Description:JLDAP/ipToNetAddress}}
+
<! removed transcluded page call, red link never existed >
  
 
===Syntax===
 
===Syntax===
Line 49: Line 49:
  
 
<span class="editsection" style="font-size:76%;">
 
<span class="editsection" style="font-size:76%;">
<nowiki>[</nowiki>[[SeeAlso:JLDAP/ipToNetAddress|Edit See Also]]<nowiki>]</nowiki>
+
<nowiki>[<! removed edit link to red link >]</nowiki>
 
</span>
 
</span>
{{SeeAlso:JLDAP/ipToNetAddress}}
+
<! removed transcluded page call, red link never existed >
  
 
===Examples===
 
===Examples===
Line 64: Line 64:
 
  format= ,,,
 
  format= ,,,
 
</dpl>
 
</dpl>
 +
[[Category:Archived pages API16]]

Revision as of 22:04, 13 May 2013

The "API16" namespace is an archived namespace. This page contains information for a Joomla! version which is no longer supported. It exists only as a historical reference, it will not be improved and its content may be incomplete and/or contain broken links.

Description[edit]

Converts a dot notation IP address to net address (e.g. for Netware, etc)

[<! removed edit link to red link >]

<! removed transcluded page call, red link never existed >

Syntax[edit]

ipToNetAddress($ip)
Parameter Name Default Value Description
$ip IP Address (e.g. xxx.xxx.xxx.xxx)

Returns[edit]

string Net address public

Defined in[edit]

libraries/joomla/client/ldap.php

Importing[edit]

jimport( 'joomla.client.ldap' );

Source Body[edit]

function ipToNetAddress($ip)
{
        $parts = explode('.', $ip);
        $address = '1#';

        foreach ($parts as $int) {
                $tmp = dechex($int);
                if (strlen($tmp) != 2) {
                        $tmp = '0' . $tmp;
                }
                $address .= '\\' . $tmp;
        }
        return $address;
}

[<! removed edit link to red link >] <! removed transcluded page call, red link never existed >

Examples[edit]

<CodeExamplesForm />