Posted in PHP onJuly 07, 2008
<?php
$f=fopen("test.txt", "wb");
$text=utf8_encode("?!");
// adding header
$text="\xEF\xBB\xBF".$text;
fputs($f, $text);
fclose($f);
?>
PHP写入WRITE编码为UTF8的文件的实现代码
声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Reply on: @reply_date@
@reply_contents@