我有一个filelist.txt文件,我创建了一个名为clear.php的文件来清除文件列表的内容。
我在index.html中放了一个按钮来调用clear.php来清除文件。
任何人都可以帮我解决我应该在clear.php中编写的PHP代码吗?
如何编写一个按钮来调用clear.php,然后返回index.html,显示它已被清除的结果?
答案 0 :(得分:104)
file_put_contents("filelist.txt", "");
您可以使用header()功能重定向以修改位置标头。
答案 1 :(得分:33)
这会截断文件:
$fh = fopen( 'filelist.txt', 'w' );
fclose($fh);
在clear.php中,使用$_SERVER['HTTP_REFERER']
值重定向到来电者页面。
答案 2 :(得分:16)
//create a file handler by opening the file
$myTextFileHandler = @fopen("filelist.txt","r+");
//truncate the file to zero
//or you could have used the write method and written nothing to it
@ftruncate($myTextFileHandler, 0);
//use location header to go back to index.html
header("Location:index.html");
我不知道你想在哪里显示结果。
答案 3 :(得分:4)
要添加按钮,您可以使用jQuery库或简单的Javascript脚本,如下所示:
HTML 链接或按钮:
<a href="#" onClick="goclear()" id="button">click event</a>
<强>使用Javascript:强>
<script type="text/javascript">
var btn = document.getElementById('button');
function goclear() {
alert("Handler called. Page will redirect to clear.php");
document.location.href = "clear.php";
};
</script>
使用 PHP 清除文件内容。例如,您可以使用 fseek($ fp,0); 或 ftruncate(资源$ file,int $ size),如下所示:
<?php
//open file to write
$fp = fopen("/tmp/file.txt", "r+");
// clear content to 0 bits
ftruncate($fp, 0);
//close file
fclose($fp);
?>
重定向 PHP - 您可以使用标头(字符串$ string [,bool $ replace = true [,int $ http_response_code]])
<?php
header('Location: getbacktoindex.html');
?>
我希望它有所帮助。
答案 4 :(得分:3)
使用'w'
而不是'a'
。
if (!$handle = fopen($file, 'w'))
答案 5 :(得分:2)
尝试fopen() http://www.php.net/manual/en/function.fopen.php
如模式将截断文件。
答案 6 :(得分:0)
$fp = fopen("$address",'w+');
if(!$fp)
echo 'not Open';
//-----------------------------------
while(!feof($fp))
{
fputs($fp,' ',999);
}
fclose($fp);