PHP如何把字符串写入到TXT文件中?
代码如下:
//$file:文件路径,$content要写入的字符串
function put_to_file($file, $content) {
$fopen = fopen($file, 'wb');
if (!$fopen) {
return false;
}
fwrite($fopen, $content);
fclose($fopen);
return true;
}
本文链接:http://78moban.cn/post/16564.html
版权声明:站内所有文章皆来自网络转载,只供模板演示使用,并无任何其它意义!