API16

Difference between revisions of "JBrowser/getHTTPProtocol"

From Joomla! Documentation

< API16:JBrowser
(New page: ===Description=== Returns the server protocol in use on the current server. <span class="editsection" style="font-size:76%;"> <nowiki>[</nowiki>[[Description:JBrowser/getHTTPProtocol|...)
 
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:JBrowser/getHTTPProtocol|Edit Descripton]]<nowiki>]</nowiki>
+
<nowiki>[<! removed edit link to red link >]</nowiki>
 
</span>
 
</span>
  
{{Description:JBrowser/getHTTPProtocol}}
+
<! removed transcluded page call, red link never existed >
  
 
===Syntax===
 
===Syntax===
Line 34: Line 34:
  
 
<span class="editsection" style="font-size:76%;">
 
<span class="editsection" style="font-size:76%;">
<nowiki>[</nowiki>[[SeeAlso:JBrowser/getHTTPProtocol|Edit See Also]]<nowiki>]</nowiki>
+
<nowiki>[<! removed edit link to red link >]</nowiki>
 
</span>
 
</span>
{{SeeAlso:JBrowser/getHTTPProtocol}}
+
<! removed transcluded page call, red link never existed >
  
 
===Examples===
 
===Examples===
Line 49: Line 49:
 
  format= ,,,
 
  format= ,,,
 
</dpl>
 
</dpl>
 +
[[Category:Archived pages API16]]

Revision as of 21:50, 12 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]

Returns the server protocol in use on the current server.

[<! removed edit link to red link >]

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

Syntax[edit]

getHTTPProtocol()


Returns[edit]

string The HTTP server protocol version.

Defined in[edit]

libraries/joomla/environment/browser.php

Importing[edit]

jimport( 'joomla.environment.browser' );

Source Body[edit]

public function getHTTPProtocol()
{
        if (isset($_SERVER['SERVER_PROTOCOL'])) {
                if (($pos = strrpos($_SERVER['SERVER_PROTOCOL'], '/'))) {
                        return substr($_SERVER['SERVER_PROTOCOL'], $pos + 1);
                }
        }
        return null;
}

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

Examples[edit]

<CodeExamplesForm />