如果早或晚我怎样才能得到?

How can i get if early or late?

这是我的代码 我想早点或晚点 谢谢宝

 $current_time = strtoupper(date("g:i a "));
             $time = strtoupper(date("g:i a ",strtotime($current_time)));
            //print_r($time);
            
            $start_time = $request->start_time; 
            $s_time = str_replace('/', '-', $start_time);
            $fstart_time= strtoupper(date('g:i a',strtotime($s_time)));
           //print_r($fstart_time);
             
            if ($time > $fstart_time){
                 print_r('early');
             }else{
                 print_r('late');
             }

更新我解决了我的问题但是提前谢谢你

这是我的代码

     $start_time = $request->start_time; 
            $s_time = str_replace('/', '-', $start_time);
            $fstart_time= strtoupper(date('g:i a',strtotime($s_time)));
            print_r($fstart_time);

if (time() >= strtotime($fstart_time)) {
            echo "early";
 } else{

            echo "late";
}

这里有一个针对您的格式的简单解决方案

if (time() >= strtotime($request->start_time)) {
    print_r('early');
} else {
    print_r('late');
}