phpexcel无法导出的解决方法
set_time_limit(0);
ini_set("memory_limit","512M");
//去除符号 有些特别的符号 没办法导出来的
function match_chinese($chars,$encoding='utf8')
{
$pattern =($encoding=='utf8')?'/[/x{4e00}-/x{9fa5}a-zA-Z0-9]/u':'/[/x80-/xFF]/';
preg_match_all($pattern,$chars,$result);
$temp =join('',$result[0]);
return $temp;
}
原创文章,作者:奋斗,如若转载,请注明出处:https://blog.ytso.com/tech/pnotes/19074.html