我正在使用 CodeIgniter 2.1.3。我对list_fields()
应该返回 MySQL 结果的字段数组的函数有疑问。所以我下面的代码应该列出 MySQL 结果的所有字段。
$query = $this->db->query("SELECT * from $tablename where REGNO='$keyword' " );
$fields = $query->list_fields();
foreach ($fields as $f)
{
echo $f;
}
它在 Windows 中运行良好,但在 Linux 中无法运行,但如果结果中的行数为零,它甚至在 Linux 中也能运行。
知道出了什么问题吗?