API16

JBrowser/getHTTPProtocol: Difference between revisions

From Joomla! Documentation

Doxiki (talk | contribs)
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 02:50, 13 May 2013

Description

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

getHTTPProtocol()


Returns

string The HTTP server protocol version.

Defined in

libraries/joomla/environment/browser.php

Importing

jimport( 'joomla.environment.browser' );

Source Body

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

<CodeExamplesForm />