- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试为树实现一个 php codeigniter 模型,每次运行我的 Controller 时,我都会收到以下错误:
Fatal error: Cannot use object of type CI_DB_mysql_result as array in C:\AppServ\www\tree\application\models\Btree.php on line 50
我试图在行中修复这个语法
$currentID = $row['id'];
但是,仍然收到相同的错误消息。
我的模型函数是:
public function fetchTree($parentArray, $parentID = null)
{
// Create the query
if ($parentID == null)
$parentID = -1;
$sql = "SELECT `id` FROM `{$this->tblName}` WHERE `id`= ". intval($parentID);
// Execute the query and go through the results.
$result = $this->db->query($sql);
if ($result)
{
while ($row = $result)
{
// Create a child array for the current ID
$currentID = $row['id'];
$parentArray[$currentID] = array();
// Print all children of the current ID
$this->fetchTree($parentArray[$currentID], $currentID);
}
$result->close();
}
}
最佳答案
你的问题出在这一行:
while($row = $result)
您正在将 $row
设置为整个查询对象。您想要遍历查询的结果。
试试这个:
$query = $this->db->query($sql);
foreach($query->result_array() AS $row) {
$currentID = $row['id'];
...
关于php - 代码点火器错误 : Fatal error: Cannot use object of type CI_DB_mysql_result as array,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20022662/
大家好,我的页面有问题,我有 Controller 名称用户,我需要从我的函数中获取值并在另一个函数中使用它,但我有问题: 消息:类 CI_DB_mysql_result 的对象无法转换为字符串 文件
我是 codeigniter 编程的新手。当我尝试连接数据库并从表中检索数据时,我发现如下错误: A PHP Error was encountered Severity: Notice Messag
我是 CodeIgniter 的新手,我已经尝试阅读 CI 的文档,但我仍然无法解决我的问题,也许这里有人可以帮助解决我的问题。这是我的代码: 在我的 Controller 中 class Regis
我正在尝试为树实现一个 php codeigniter 模型,每次运行我的 Controller 时,我都会收到以下错误: Fatal error: Cannot use object of type
我正在尝试为树实现一个 php codeigniter 模型,每次运行我的 Controller 时,我都会收到以下错误: Fatal error: Cannot use object of type
我是一名优秀的程序员,十分优秀!