我正在寻找一段代码来获取一周中的时间和日期,然后根据回来的内容包含SSI html。
我尝试过改编Java和PHP,但似乎没什么用。有什么想法吗?
答案 0 :(得分:0)
您可以使用PHP函数include()而不使用SSI。
例如
if (date("d") == 1) {
include("firstday.html");
} else {
include("default.html");
}
此代码包含每月第一天的firstday.html文件,其他日期包含default.html。
对于其他情况,您可以阅读PHP函数date()
的说明