可能重复:
如何从文件开头删除?
我怀疑这个问题以前遇到过,但我还找不到任何东西。我尝试过以各种方式编辑文件,但每次我仍然在第一个条目中得到这个奇怪的字符。
所以我有一个文本文件(.txt),其中包括:
德里克
比利,威廉
加里,橡树
现在,我调用 file() 函数,然后像这样打印:
<?php
// read the file into an array called $users
$users = file('C:/private/filetest_02.txt');
?>
<pre>
<?php print_r($users); ?>
</pre>
但是,然后我收到这个输出:
大批
(
[0] =>  derek, drw [1] => billy, william [2] => gary, oaktree
)
为什么这个
字符显示在数组的第一个条目中?我能做些什么来缓解这种情况?提前感谢任何可以阐明这个问题的人。