尝试使用codeigniter在我的服务器上保存csv文件。
我的语法是:
$this->load->dbutil();
$query = $this->db->query("SELECT id,customeraccount,band FROM Customer_Bands");
$delimiter = ',';
$newline = "<br>";
echo $this->dbutil->csv_from_result($query, $delimiter, $newline);
if ( ! write_file(base_url().'/application/authorizations/test.csv', $this->dbutil->csv_from_result($query, $delimiter, $newline)))
{
echo 'Unable to write the file';
}
else
{
echo 'File written!';
}
现在这很粗糙,但希望首先使用功能。
两个问题。
首先echo $this->dbutil->csv_from_result($query, $delimiter, $newline);
正确输出到我的视图,但每个字段都在“”内,我该如何删除它们?
其次,该文件未写入我的服务器。
base_url()是我的codeigniter根文件夹然后在应用程序内我创建了一个名为authorizations的文件夹,所以base_url()/application/authorizations
这当前失败并且回声'Unable to write the file'
提前致谢