$date = new DateTime($result->s_start, new DateTimeZone($result->s_timezone));
$date->setTimezone(new DateTimeZone('Africa/Cairo'));
echo $date->format('Y-m-d H:i:sP') ;
Tài nguyên
Chỉnh sửa Một chức năng trong bộ điều khiển để chuyển đổi múi giờ.
public function _convert_time($result){
$date = new DateTime($result->s_start, new DateTimeZone($result->s_timezone));
$date->setTimezone(new DateTimeZone('Africa/Cairo'));
return $date->format('Y-m-d H:i:sP') ;
}
Bây giờ bạn có thể lặp lại kết quả
foreach($results as $result){
echo $this->_convert_time($result);
}