PHP让内容动起来
sudo vi /etc/nginx/sites-enabled/default




总结一下
我的技术水平
已解决的问题
待解决的问题
Last updated
sudo vi /etc/nginx/sites-enabled/default




Last updated
sudo /etc/init.d/nginx reload<h1>写文章</h1>
<form action="add_article_submit.php" method="post"><?php
$input = $_POST;
$file = './articles.json';
$data = array();
if (file_exists($file)) {
$tmp = file_get_contents($file); //读取文件,变成字符串
if(!empty($tmp)) {
$data = json_decode($tmp, true); //json解码成array
}
}
$data[] = $input;
file_put_contents($file, json_encode($data)); //把字符串保存到文件
echo '保存成功';