如果特定地点(比如悉尼,澳大利亚)的当前时间是在上午9点到下午5点之间,那么我需要显示一些内容。
thx任何帮助
答案 0 :(得分:2)
查看PHP's many date/time functions。
以下是我将使用的步骤:
答案 1 :(得分:0)
$current_time_date = getdate();
$currently_in_business_hours = false;
if ($current_time_date['hours'] >= 9 && $current_time_date['hours'] < 17 && $current_time_date['wday'] != 0 && $current_time_date['wday'] != 6) {
$currently_in_business_hours = true;
}