获取Joomla 2.5中的作者姓名
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了获取Joomla 2.5中的作者姓名相关的知识,希望对你有一定的参考价值。
如何获取Joomla 2.5中当前文章的作者姓名?
我尝试使用这个代码,但它给了我号码;
$id = JRequest::getInt('id');
$article =& JTable::getInstance('content');
$article->load($id);
$article_author = $article->created_by;
echo $article_author;
答案
你可以这样试试
//this method of getting requested variable is deprecated
$id = JRequest::getInt('id');
//use JFactory::getApplication()->input instead of JRequest::getInt()
$id = JFactory::getApplication()->input->getInt('id')
$article = JTable::getInstance('content');
$article->load($id);
//get user id which create the article
$created_user_id = $article->created_by;
//fetch user
$user = JFactory::getUser($created_user_id);
$article_author = $user->name;
echo $article_author;
希望这会帮助你。
以上是关于获取Joomla 2.5中的作者姓名的主要内容,如果未能解决你的问题,请参考以下文章