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.
我正在寻找一段获取时间和星期几的代码,然后根据返回的内容包含 SSI html。
我尝试过调整 Java 和 PHP,但似乎没有任何效果。有任何想法吗?
您可以使用 PHP 函数 include() 而不是使用 SSI。
例如
if (date("d") == 1) { include("firstday.html"); } else { include("default.html"); }
此代码包含每个月的第一天的文件 firstday.html,并包含其他日子的 default.html。
对于其他情况,您可以阅读 PHP 函数 date() 的描述