<div class="codetitle"> <span><a style="CURSOR: pointer" data="36675" class="copybut" id="copybut36675" onclick="doCopy('code36675')"><u>复制代码</u></a></span> 代码如下:</div> <div class="codebody" id="code36675"> <br><?php <BR>$f=fopen("test.txt", "wb"); <br>$text=utf8_encode("a!"); <br>//先用函数utf8_encode将所需写入的数据变成UTF编码格式。 <br>$text="\\xEF\\xBB\\xBF".$text; <br>//"\\xEF\\xBB\\xBF",这串字符不可缺少,生成的文件将成为UTF-8格式,否则依然是ANSI格式。 <br>fputs($f, $text); <br>//写入。 <br>fclose($f); <br>?> <br> </div>