$write_data_a = [
'html_url' => $getUrl,
'ip' =>$this->get_real_ip(),
'time' => date("Y-m-d H:i:s",time()),
'res' =>$response
]
//转化为JSON
$write_data_a = json_encode($write_data_a) . '||' . "\n"
$date = date("Y-m-d", time())
//项目路径目录,判断是否存在,不存在则创建
$lujing = "./360_mobile_res_sd"
if(!is_dir($lujing)){
mkdir(iconv("UTF-8", "GBK", $lujing),0777,true)
}
//文件,判断是否存在,不存在则创建
$TxtFileName = "./360_mobile_res_sd/" . $date . "_2.txt"
//以读写方式打写指定文件,如果文件不存则创建
if(file_exists($TxtFileName))
{
//存在,追加写入内容
file_put_contents($TxtFileName, $write_data_a, FILE_APPEND)
}
else
{
//不存在,创建并写入
if( ($TxtRes=fopen ($TxtFileName,"w+")) === FALSE){
exit()
}
if(!fwrite ($TxtRes,$write_data_a)){ //将信息写入文件
fclose($TxtRes)
exit()
}
fclose ($TxtRes)//关闭指针
}
/*先取出*/$string = file_get_contents("1.txt")
$newstring// 新数据
if (empty($string)) {
$string = $newstring
} else {
$string .= '|' . $newstring
}
file_put_contents("1.txt", $string)
php 写入txt:PHP
function writelog($str)
{
$open=fopen("log.txt","a" )
fwrite($open,$str)
fclose($open)
}
'a' 写入方式打开,将文件指针指向文件末尾。如果文件不存在则尝试创建之。
'a+' 读写方式打开,将文件指针指向文件末尾。如果文件不存在则尝试创建之。
php txt 换行
"\r\n"
不可用单引号.
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)