JURI/base
From Joomla! Documentation
< JURI(Difference between revisions)
m (→See also: re-categorisation) |
m (Edit api.joomla.org link) |
||
| Line 28: | Line 28: | ||
Joomla base URI (path only) is /joomla | Joomla base URI (path only) is /joomla | ||
===See also=== | ===See also=== | ||
| − | * [http://api.joomla.org/Joomla-Framework/Environment/JURI.html#base JURI::base on api.joomla.org] | + | * [http://api.joomla.org/1.5/Joomla-Framework/Environment/JURI.html#base JURI::base on api.joomla.org] |
* [[JURI/current|JURI::current]] | * [[JURI/current|JURI::current]] | ||
* [[JURI/root|JURI::root]] | * [[JURI/root|JURI::root]] | ||
<noinclude>[[Category:JURI]]</noinclude> | <noinclude>[[Category:JURI]]</noinclude> | ||
Latest revision as of 12:35, 21 December 2012
A static method that returns the base URI of the Joomla site.
Contents |
[edit] Syntax
string base( $pathonly )
where:
| Argument | Data type | Description | Default |
|---|---|---|---|
| $pathonly | boolean | If true then only the path to the Joomla site is returned; otherwise the scheme, host and port are prepended to the path. Note that when false (default) the URI returned has a trailing "/", but when true the trailing "/" is omitted. | false |
[edit] Note
In a template you can use the shortcut $this->baseurl instead of JURI::base( true ).
[edit] Example
In this example, the Joomla site URI is shown with both values of the argument.
echo 'Joomla base URI is ' . JURI::base() . "\n"; echo 'Joomla base URI (path only) is ' . JURI::base( true ) . "\n";
might output
Joomla base URI is http://localhost/joomla/ Joomla base URI (path only) is /joomla