实现php 一些简单的功能
发布网友
发布时间:2022-04-06 01:31
我来回答
共3个回答
热心网友
时间:2022-04-06 03:00
生成1.txt
<?PHP
$txt = '';
for($i = 1;$i <= 100;$i++){
$txt .= rand(10,1000)."\n";
}
file_put_contents('./1.txt',$txt);
?>
2.php内容
<?PHP
$txt = file_get_contents('./1.txt');
$line = explode("\n",$txt);
foreach($line as $k => $v){
$key = $k + 1;
echo $v,'<a href="3.php?id='.$key.'">编辑</a><br />';
}
?>
3.php
删除的话
<?PHP
$id = intval($_GET['id']);
if($id > 0){
$txt = file_get_contents('\1.txt');
$line = explode("\n",$txt);
unset($line[$id-1]);
file_put_contents('./1.txt',$txt);
} else {
die('error');
}
?>
编辑
<?PHP
$id = intval($_GET['id']);
if($id > 0){
$txt = file_get_contents('\1.txt');
$line = explode("\n",$txt);
$line[$id-1] = trim($_GET['value']);//$_GET['value']为编辑后的新值
file_put_contents('./1.txt',$txt);
} else {
die('error');
}
?>
3.php可以用AJAX也可以用个FORM提交给本页
热心网友
时间:2022-04-06 04:18
你是学习吧,自己写吧fopen fwrite fclose file
对你的学习才有用
热心网友
时间:2022-04-06 05:53
涉及到后台吧