foreach遍历数组的时候会,对数组先进行复制,然后操作复制版本
list和each 直接操作数组本身,可能会出现安全问题
文件读取:$file = 'C:\new.txt'; $handle = fopen($file,'w'); $str = "xieru"; fwrite($handle,$str);
文件写入:
$file = 'C:\new.txt';
$handle = fopen($file,'r');
$text = fread($handle,filesize($file));
echo $text.'<br>';
都不要忘记关闭 fclose($handle);
其他相关函数:
file_put_contents();
file_get_contents();
file_exists();