Joomla 上是否有关于在 PHP 中通过 MySQL 进行数据库查询的特定文档?
Is there specific documentation available on Joomla regarding making database queries via MySQL in PHP?
我真正想要的是:
是的,Joomla 定义了自己的 OOP 来处理数据库.
Yes, Joomla has it's own OOP defined to deal with databases.
通常,你会处理这样的代码:
Usually, you will deal with code like this:
$db =& JFactory::getDBO();
$query = "SELECT * FROM #__example_table WHERE id = 999999;";
$db->setQuery($query);
可以在此处阅读更多信息:如何在脚本中使用数据库类
Can read more here: How to use the database classes in your script
这篇关于Joomla 和 MySQL的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!