3个回答
展开全部
有两种方法:
file_put_contents("/tmp/a.txt","");
system("cd /tmp; touch 1.txt"); 这种只时候在服务器执行,本地不可以
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
看手册,文件操作部分,比如 file_put_contents 就能满足要求
<?php
$file = 'people.txt';
// The new person to add to the file
$person = "John Smith\n";
// Write the contents to the file,
// using the FILE_APPEND flag to append the content to the end of the file
// and the LOCK_EX flag to prevent anyone else writing to the file at the same time
file_put_contents($file, $person, FILE_APPEND | LOCK_EX);
?>
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
<?php
$file = fopen("a.text",'w');
fwrite($file,"sdadsadasdas");
fclose($file);
?>
$file = fopen("a.text",'w');
fwrite($file,"sdadsadasdas");
fclose($file);
?>
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询