stdClass." />
在 Joomla 6 中,Adminmodel 中的 getItem() 方法將傳回 stdObject。 這意味著該類別的所有已棄用的功能將不可用。 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中文網其他相關文章!