正在回答 回答被采纳积分+1
<?php
header("Content-type: text/html; charset: utf-8");
date_default_timezone_set('PRC');
$file = null;
$content = null;
function open_file($filename) {
global $file, $content;
$file = fopen($filename, 'w') or die("Unable to open file!");
}
function close_file() {
global $file, $content;
fclose($file);
$content = null;
}
function change_file_to_array() {
global $file, $content;
$lines = fgetcsv($file, 0, '\n');
foreach($lines as &$line) {
$line = explode('\t', trim($line));
}
$content = $lines;
}
function add_content($username, $title, $content) {
global $file, $content;
$time=time();
$data=compact('username','title', 'time', 'content');
if(file_put_contents($file,$data)){
echo "<script>alert('留言成功!');location.href='22-msg.php';</script>";
}else{
echo "<script>alert('留言失败!');location.href='22-msg.php';</script>";
}
}
function delele_content() {
}
function check_content() {
}
function edit_content() {
}
open_file("text.txt");
close_file();
- 参与学习 人
- 提交作业 626 份
- 解答问题 4930 个
想要学好Web后端开发的中流砥柱语言,本阶段为你轻松铺就扎实的基础,从前端网页布局的搭建到后台PHP开发,助你从零基础到掌握主流开发语言。
了解课程
恭喜解决一个难题,获得1积分~
来为老师/同学的回答评分吧
0 星