JURI/getUser
From Joomla! Documentation
< JURI(Difference between revisions)
(New page: Returns the user name part of the URI represented by the JURI object. ===Syntax=== string getUser() ===Example=== <source lang="php"> $uri = 'http://fredbloggs:itsasecret@www.example.com...) |
m (→See also: re-categorisation) |
||
| Line 15: | Line 15: | ||
* [http://api.joomla.org/Joomla-Framework/Environment/JURI.html#getUser JURI->getUser on api.joomla.org] | * [http://api.joomla.org/Joomla-Framework/Environment/JURI.html#getUser JURI->getUser on api.joomla.org] | ||
* [[JURI/setUser|JURI->setUser]] | * [[JURI/setUser|JURI->setUser]] | ||
| − | <noinclude> | + | <noinclude>[[Category:JURI]]</noinclude> |
Latest revision as of 11:34, 9 August 2012
Returns the user name part of the URI represented by the JURI object.
[edit] Syntax
string getUser()
[edit] Example
$uri = 'http://fredbloggs:itsasecret@www.example.com:8080/path/to/Joomla/index.php?task=view&id=32#anchorthis'; $u =& JURI::getInstance( $uri ); echo 'User is ' . $u->getUser();
would output
User is fredbloggs