👾 php

php 지정 날짜 동안 동작

(。θᗨθ。) 2022. 12. 27. 11:06
<?
$toDay = date("Y-m-d", time()); //현재날짜
$startDay = "2022-12-27"; //시작날짜
$endDay = "2022-12-29"; //끝낼날짜

if ($startDay <= $toDay && $endDay >= $toDay) { ?> // 이 안에 일어날 동작 넣기

  <script type="text/javascript">
    document.querySelector('#index .business li:nth-child(4)').style.display = 'none';
  </script>
<? } ?>
728x90