求php代码!!!!实现一个简单的功能。
各位大侠们,求你们帮忙写一小段php代码实现以下功能:首先用php打开一个(和php在同一个目录的)文本文档“shuju.txt”。把里面的内容显示出来。然后创建两个按钮...
各位大侠们,求你们帮忙写一小段php代码实现以下功能:
首先用php打开一个(和php在同一个目录的)文本文档“shuju.txt”。把里面的内容显示出来。
然后创建两个按钮。一个叫“打开”。一个叫“关闭”。
然后当按下“打开”时。在php目录创建一个文本文档。叫“打开.txt”
然后当按下“关闭”时。在php目录创建一个文本文档。叫“关闭.txt”
谢谢各位先! 展开
首先用php打开一个(和php在同一个目录的)文本文档“shuju.txt”。把里面的内容显示出来。
然后创建两个按钮。一个叫“打开”。一个叫“关闭”。
然后当按下“打开”时。在php目录创建一个文本文档。叫“打开.txt”
然后当按下“关闭”时。在php目录创建一个文本文档。叫“关闭.txt”
谢谢各位先! 展开
3个回答
展开全部
最好不要用中文文件名
<?
$content = file_get_contents('shuju.txt');
echo 'shuju.txt 内容:'.$content;
if(isset($_GET['action'])){
if($_GET['action']==1){
file_put_contents('open.txt','');
echo '创建打开.txt';
}elseif($_GET['action']==2){
file_put_contents('close.txt','');
echo '创建关闭.txt';
}
}
?>
<input type="button" value="打开" onclick="window.location='?action=1'">
<input type="button" value="关闭" onclick="window.location='?action=2'">
<?
$content = file_get_contents('shuju.txt');
echo 'shuju.txt 内容:'.$content;
if(isset($_GET['action'])){
if($_GET['action']==1){
file_put_contents('open.txt','');
echo '创建打开.txt';
}elseif($_GET['action']==2){
file_put_contents('close.txt','');
echo '创建关闭.txt';
}
}
?>
<input type="button" value="打开" onclick="window.location='?action=1'">
<input type="button" value="关闭" onclick="window.location='?action=2'">
展开全部
<html>
<head>
<title>php读文件与打开文件实例</title>
</head>
<body>
<form action="file.php" method="post">
<input type="submit" name="subopen" value="打开"/>
<input type="submit" name="subclose" value="关闭"/>
</form>
</body>
</html>
<?php
if(isset($_POST["subopen"]))
{
touch(iconv("utf-8","gb2312","打开.txt"));
}
if(isset($_POST["subclose"]))
{
touch(iconv("utf-8","gb2312","关闭.txt"));
}
//打开shuju.txt文件
$filename="./shuju.txt";
if (file_exists($filename)) {
$content = file_get_contents($filename);
echo iconv("gb2312","utf-8",$content)."<br>";
} else {
echo "$filename不存在";
}
?>
<head>
<title>php读文件与打开文件实例</title>
</head>
<body>
<form action="file.php" method="post">
<input type="submit" name="subopen" value="打开"/>
<input type="submit" name="subclose" value="关闭"/>
</form>
</body>
</html>
<?php
if(isset($_POST["subopen"]))
{
touch(iconv("utf-8","gb2312","打开.txt"));
}
if(isset($_POST["subclose"]))
{
touch(iconv("utf-8","gb2312","关闭.txt"));
}
//打开shuju.txt文件
$filename="./shuju.txt";
if (file_exists($filename)) {
$content = file_get_contents($filename);
echo iconv("gb2312","utf-8",$content)."<br>";
} else {
echo "$filename不存在";
}
?>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询