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.
PHPには少し慣れていませんが、基本的に今何月にいるかをチェックし、それに従って特定のアクションを実行するPHPスクリプトがあります。
さて、私たちが別の月にいるとphp環境に「思わせる」方法があるので、実際に1年が経過するのを待たずに12か月の反応をテストできます(笑)。
function getMonth(){ return 3; } function getMonth(){ return date('n'); }
関数を使用し、実際のコードでは 2 番目の関数を使用し、テスト時には最初の関数を使用します。
必要に応じてどちらかをコメントアウトするだけで、ファイルに含めることができます。