我有文章 id,如何获得这篇文章的有效完整网址?这篇文章已经与菜单相关联,但我可能不知道,在 php 中是否有任何简单的方法来获取 url ?我正在使用 joomla 3.2
我已经尝试过。

$article = ControllerLegacy::getInstance('Content')->getModel('Article')->getItem($article‌​Id);
JRoute::_(ContentHelperRoute::getArticleRoute($articleId,$article->catid))

最佳答案

你可以这样使用

 $article = JControllerLegacy::getInstance('Content')
            ->getModel('Article')->getItem($articleId);

  $url =  JRoute::_(ContentHelperRoute::getArticleRoute($articleId,
                      $article->catid,
                      $article->language))

关于joomla2.5 - 如何通过joomla中的ID获取文章的完整网址?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/23702983/

10-13 08:17