//$file:文件路径,$content要写入的字符串 function put_to_file($file, $content) { $fopen = fopen($file, 'wb'); if (!$fopen) { return false; } fwrite($fopen, $content); fclose($fopen); return true; }
本文标签:PHP 字符串 写入 TXT 文件 中的 代码 方法
原文链接:
版权说明: 本文由作者上传,本站仅提供存储服务,转载请注明原文链接