时间:2021-07-01 10:21:17 帮助过:52人阅读
$a=iconv("gb2312", "UTF-8", $n).'.txt';
$n='你';
$a=$n.'.txt';
$fopen=fopen($a,'w');
英文和数字没事 中文为什么不行 怎么创建中文的?这样试了也不行$a=iconv("gb2312", "UTF-8", $n).'.txt';
$n='你';
$a=$n.'.txt';
$fopen=fopen($a,'w');
$n="你好";
$a=$n.'.txt';
$a = iconv("UTF-8", "GBK", $a);
$fopen=fopen($a,'w');
我这样成功了~
没人....
居然中文命名,需求太奇葩了吧,最好避免中文,好多问题的.