时间:2021-07-01 10:21:17 帮助过:28人阅读
cd php/php go-pear.pharpear list -- 执行正常
Warning: require(../../inc/conn.php): failed to open stream: No such file or directory in C:\wwwroot\excel.php on line 2PHP Fatal error: require(): Failed opening required '../../inc/conn.php' (include_path='.;C:\php\pear') in C:\wwwroot\excel.php on line 2Fatal error: require(): Failed opening required '../../inc/conn.php' (include_path='.;C:\php\pear') in C:\wwwroot\excel.php on line 2
你可能要放弃 pear 了,或者就是放弃 php5.3及以上版本
php 升级太快,同时又给自己加了许多限制
pear 的贡献者们没有精力跟上 php 的变革步伐,或者根本就不赞同 php 的变革
你可能要放弃 pear 了,或者就是放弃 php5.3及以上版本
php 升级太快,同时又给自己加了许多限制
pear 的贡献者们没有精力跟上 php 的变革步伐,或者根本就不赞同 php 的变革 额,问题这么严重。。
我现在用的 5.2.17性能有些跟不上了,迫切需要优化。不然我也不会随便改动版本的~
请问版主 php导出excel 可有什么好方法啊? 之所以用pear 就是因为他有 Spreadsheet_Excel_Writer 这个性能比较不错的excel导出类库,原先用的phpexcel 性能太差劲了,而csv格式又不能满足需要!~
如果您那有好用的导出excel方式提供,不胜感激啊!!~
如果是仅仅需要 Spreadsheet_Excel_Writer 类,那倒不妨将他及相关文件拷贝出来
不过在 php5.4 中报错不多的话,改一下还是可以用的
如果是仅仅需要 Spreadsheet_Excel_Writer 类,那倒不妨将他及相关文件拷贝出来
不过在 php5.4 中报错不多的话,改一下还是可以用的
我试过拷贝这个类库到站点目录,5.4版本执行仍然是没反应 打开php.ini的错误日志 也没输出什么问题,只有在 php安装目录 执行
php c:\wwwroot\excel.php 的时候会输出上面的错误!~
我现在也是迫不得已而为之。 请问版主 可有其他好的导出excel的方法啊?!谢谢!
system.php
function tmpdir() 改为 static function tmpdir()
OLE.php
function Asc2Ucs($ascii) 改为 static function Asc2Ucs($ascii)
function LocalDate2OLE($date = null) 改为 static function LocalDate2OLE($date = null)
Worksheet.php 2490行
$this->_append(&$string, true); 改为 $this->_append($string, true);
这样就应该可以了,如果还有错的话,生成的 xsl 文件中是可以看到错误信息的
system.php
function tmpdir() 改为 static function tmpdir()
OLE.php
function Asc2Ucs($ascii) 改为 static function Asc2Ucs($ascii)
function LocalDate2OLE($date = null) 改为 static function LocalDate2OLE($date = null)
Worksheet.php 2490行
$this->_append(&$string, true); 改为 $this->_append($string, true);
这样就应该可以了,如果还有错的话,生成的 xsl 文件中是可以看到错误信息的
多谢 多谢 我试试1~
system.php
function tmpdir() 改为 static function tmpdir()
OLE.php
function Asc2Ucs($ascii) 改为 static function Asc2Ucs($ascii)
function LocalDate2OLE($date = null) 改为 static function LocalDate2OLE($date = null)
Worksheet.php 2490行
$this->_append(&$string, true); 改为 $this->_append($string, true);
这样就应该可以了,如果还有错的话,生成的 xsl 文件中是可以看到错误信息的
哎,试过了,依然没有效果!~ 没有任何报错~