다음 코드는 Joomla 1.6에서 작동하지만 3.x에서 엄격한 표준 오류가 발생합니다.
엄격한 표준 : 변수 만 참조로 지정해야합니다.
//Get the full URL for sharing purposes
$uri = & JFactory::getURI();
$absolute_url = $uri->toString();
<?php echo $absolute_url; ?>
Joomla 3.x에서 오류없이 코드가 작동하도록하려면 어떻게해야합니까?
JUri::current()
. 아래의 허용 된 답변에 설명 된 내용을 사용하십시오. joomla.stackexchange.com/a/4295/168