10/09/2013

Lấy link joomla

object &getInstance( $uri )
where:
Argument Data type Description Default
$uri string URI to be represented by the JURI object. If this is 'SERVER' then the request URI is assumed. 'SERVER'

 

Example 1

In this example, a URI object is created and then converted back to string form.
$uri = 'http://fredbloggs:itsasecret@www.example.com:8080/path/to/Joomla/index.php?task=view&id=32#anchorthis';
$u =& JURI::getInstance( $uri );
echo 'URI is ' . $u->toString() . "\n";
would output
URI is http://fredbloggs:itsasecret@www.example.com:8080/path/to/Joomla/index.php?task=view&id=32#anchorthis

Example 2

To obtain the current request URI this method can be called with no arguments. This has the same effect as calling JFactory::getURI().
$u =& JURI::getInstance();
echo 'Request URI is ' . $u->toString() . "\n";
might output
Request URI is http://localhost/joomla/index.php?option=com_content&view=article&id=1&Itemid=50

SHARE THIS

Author:

Tôi là PHƯỚC kỹ sư công nghệ thông tin. chuyên thiết kế web và làm dịch vụ MMO.

0 comments: