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


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

Copyright © 2016 phpStudy | 豫ICP备2021030365号-3