Laravel FileManager iconv() 需要 3 个参数,给定 4 个?
Laravel FileManager iconv() expects exactly 3 parameters, 4 given?
我试过以下方法:
iconv('ISO-8859-1', 'UTF-8//IGNORE', 'BIG5', $input);
然而,它失败并产生了这个 error:
iconv() expects exactly 3 parameters, 4 given
查看官方文档:
http://php.net/manual/en/function.iconv.php
您正在向函数传递一个额外的参数。
我试过以下方法:
iconv('ISO-8859-1', 'UTF-8//IGNORE', 'BIG5', $input);
然而,它失败并产生了这个 error:
iconv() expects exactly 3 parameters, 4 given
查看官方文档:
http://php.net/manual/en/function.iconv.php
您正在向函数传递一个额外的参数。