API15

JURI/current: Difference between revisions

From Joomla! Documentation

Doxiki (talk | contribs)
New page: ===Description=== Returns the URL for the request, minus the query <span class="editsection" style="font-size:76%;"> <nowiki>[</nowiki>Edit Descripton<now...
 
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:JURI/current|Edit Descripton]]<nowiki>]</nowiki>
<nowiki>[<! removed edit link to red link >]</nowiki>
</span>
</span>


{{Description:JURI/current}}
<! removed transcluded page call, red link never existed >


===Syntax===
===Syntax===
Line 38: Line 38:


<span class="editsection" style="font-size:76%;">
<span class="editsection" style="font-size:76%;">
<nowiki>[</nowiki>[[SeeAlso:JURI/current|Edit See Also]]<nowiki>]</nowiki>
<nowiki>[<! removed edit link to red link >]</nowiki>
</span>
</span>
{{SeeAlso:JURI/current}}
<! removed transcluded page call, red link never existed >


===Examples===
===Examples===
Line 53: Line 53:
  format= ,,,
  format= ,,,
</dpl>
</dpl>
[[Category:Archived pages API15]]

Revision as of 18:55, 12 May 2013

Description

Returns the URL for the request, minus the query

[<! removed edit link to red link >]

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

Syntax

current()


Returns

string

Defined in

libraries/joomla/environment/uri.php

Importing

jimport( 'joomla.environment.uri' );

Source Body

function current()
{
        static $current;

        // Get the current URL
        if (!isset($current))
        {
                $uri     = & JURI::getInstance();
                $current = $uri->toString( array('scheme', 'host', 'port', 'path'));
        }

        return $current;
}

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

Examples

<CodeExamplesForm />