PHP
·
发表于 5年以前
·
阅读量:8296
<?php
$f=fopen("test.txt", "wb");
$text=utf8_encode("iš!");
// adding header
$text="\xEF\xBB\xBF".$text;
fputs($f, $text);
fclose($f);
?>