多应用+插件架构,代码干净,二开方便,首家独创一键云编译技术,文档视频完善,免费商用码云13.8K 广告
## PHP写文件函数 ~~~ /** * 写文件函数 * * @param string $filename 文件名 * @param string $text 要写入的文本字符串 * @param string $openmod 文本写入模式('w':覆盖重写,'a':文本追加) * @return boolean */ function write_file($filename, $text, $openmod = 'w') { if (@$fp = fopen($filename, $openmod)) { flock($fp, 2); fwrite($fp, $text); fclose($fp); return true; } else { return false; } } ~~~ > how to do? ~~~ if(write_file('./test.txt',"www.8thzone.cn")){ echo "写入成功"; }else{ echo "写入失败"; } ~~~