Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要保存 1 个日期值,但我不想为它创建一个完整的数据库。我需要倒计时的日期,并且需要通过网站上的表格更改日期。
有什么选择吗?我正在考虑一个带有日期的 .txt 文件,但我找不到使用 php 写入 txt 的正确指南
提前致谢
正如“HamZa DzCyberDeV”所评论的:
// to save it $date = "2013-02-08 14:28"; file_put_contents("countdownFileName.txt", $date); // to open it $countdown = file_get_contents("countdownFileName.txt");
(您确实需要从 php 写入该文件的权限)