Сообщество IT-специалистов
Ответы на любые вопросы об IT
Профессиональное развитие в IT
Удаленная работа для IT-специалистов
<?php $time = date('H'); if($time == 23 and $time >= 5){ echo "<link rel=\"stylesheet\" href=\"css/2.css\" />"; } else{ echo "<link rel=\"stylesheet\" href=\"css/1.css\" />"; } ?>
if($time == 23 || $time < 5){
<?php $time = date('H'); if($time == 23 or $time < 5){ echo "<link rel=\"stylesheet\" href=\"css/2.css\" />"; } else{ echo "<link rel=\"stylesheet\" href=\"css/1.css\" />"; } ?>
$time == 23 and $time < 5