我使用 PHP 和 MySql 将报告导出为 excel。我可以使用我的源代码从本地主机导出和打开文件,但无法在服务器中执行此操作。当我尝试导出时,它显示“
Warning: tempnam() [function.tempnam]: open_basedir restriction in effect. File() is not within the allowed path(s): (/home:/tmp:/usr) in /home/xx/xx.inc.php on line 205.
”我通过谷歌搜索,但我无法获得解决方案。
$this->_tmpfilename=tempnam("/tmp", "excelreport");
$fh=fopen($this->_tmpfilename, "w+b");
这是使用的代码。怎么了。