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() の説明を読むことができます