作者热门文章
- 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/
我正在使用 Codeigniter,问题是我的 Controller 中有重复很多的特定代码,我需要将这段代码放在一个地方,然后在 Controller 中调用它。 例子: public funct
我真的很想知道我该怎么做,我有 3 个页面具有指向 1 个页面的相同链接,现在我想要做的是拥有 1 个足够智能的按钮来获取使用了 3 个页面中的哪一个转到该页面并使用它作为返回上一页的链接。 如果有人
我需要从 site_url() 返回值中删除 index.php我不希望搜索引擎缓存我的 URL 包含 index.php。 我通过设置 .htaccess 文件从 url 中删除了 index.ph
我是一名优秀的程序员,十分优秀!