首页上一页 1 下一页尾页 1 条记录 1/1页
为什么生成的excel文件没有网格线?
发表在PHP图书答疑
2012-07-31
是否精华
是
否
版块置顶:
是
否
《 php范例完全自学手册》第6章“将查询结果保存到excel“,为什么生成的excel文件没有网格线?
class excel
{
function start()
{
ob_start();
}
function save($path)
{
$data = ob_get_contents();
ob_end_clean();
$this->wirtetoexcel($path,$data);
}
function wirtetoexcel ($fn,$data)
{
$fp=fopen($fn,"wb");
fwrite($fp,$data);
fclose($fp);
}
}
class excel
{
function start()
{
ob_start();
}
function save($path)
{
$data = ob_get_contents();
ob_end_clean();
$this->wirtetoexcel($path,$data);
}
function wirtetoexcel ($fn,$data)
{
$fp=fopen($fn,"wb");
fwrite($fp,$data);
fclose($fp);
}
}