stdClass." />
在 Joomla 6 中,Adminmodel 中的 getItem() 方法将返回 stdClass 而不是 CMSObject。 这意味着该类的所有已弃用的功能将不可用。 Joomla 6 中的开发人员应该直接使用 item 对象的属性,而不是使用过时的 set() 和 get() 方法。
$article = $app->bootComponent('content')->getMVCFactory()->createModel('Article', 'Administrator')->getItem(1); echo $article->get('title');
$article = $app->bootComponent('content')->getMVCFactory()->createModel('Article', 'Administrator')->getItem(1); echo $article->title;
相应的 Pull Request 已被 Joomla 6 分支接受。
Joomla GitHub 上的公关
以上是为 Joomla CMSObject -> stdClass 准备扩展。的详细内容。更多信息请关注PHP中文网其他相关文章!