sql >> データベース >  >> RDS >> Mysql

日付を取得し、ユーザーのタイムゾーンに従って特定のタイムゾーンに変換します

    $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') ;
    

    リソース

    編集 タイムゾーンを変換するコントローラーの関数。

    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') ;
    }
    

    これで、結果をエコーできます

    foreach($results as $result){
        echo $this->_convert_time($result);
    }
    



    1. PDOエラー:無効なパラメーター番号:パラメーターが定義されていません

    2. Mysqlは同じクエリで行データを使用して別の行を選択しますか?

    3. Explainに基づくMySQLの最適化

    4. MySQL、エラー126:テーブルのキーファイルが正しくありません