JURI/getPort
From Joomla! Documentation
< JURI
Returns the port number part of the URI represented by the JURI object.
Syntax
string getPort()
Example
$uri = 'http://fredbloggs:itsasecret@www.example.com:8080/path/to/Joomla/index.php?task=view&id=32#anchorthis'; $u =& JURI::getInstance( $uri ); echo 'Port number is ' . $u->getPort();
would output
Port number is 8080
