Blog

PHP5.4 PEAR Spreadsheet_Excel_Writer 套件注意事項

精選文章 Jul 28, 2015 點閱 12007 討論 0
PHP網頁設計時在 PHP5.4 PEAR Spreadsheet_Excel_Writer 套件注意事項
cd /usr/local/lib/php/Spreadsheet/Excel/Writer/
 
vim Worksheet.php
 
line 2490 修改
 
$this->_append(&$string, true)
 
must be replaced by 
 
$this->_append($string, true)
 
避免 PHP Fatal error : Call-time pass-by-reference is disabled in PHP 5.4.0
精選文章 Jul 28, 2015 點閱 12007 討論 0