PHP头条
热点:

PHP写入WRITE编码为UTF8的文件的实现代码


<?php 
$f=fopen("test.txt", "wb"); 
$text=utf8_encode("顨!"); 
// adding header 
$text="\xEF\xBB\xBF".$text; 
fputs($f, $text); 
fclose($f); 
?> 

www.phpzy.comtrue/php/20578.htmlTechArticlePHP写入WRITE编码为UTF8的文件的实现代码 ?php $f=fopen("test.txt","wb"); $text=utf8_encode("顨!"); //addingheader $text="\xEF\xBB\xBF".$text; fputs($f,$text); fclose($f); ?...

相关文章

PHP之友评论

今天推荐