filter dates in php in accordance with timezone selected from UI
问题 I am working on a php code as shown below which has air_date which I want to be changed when different timezone is selected from UI . Php code: $cols = array( 'e.description_' . $opp_lang . ' as translation', 's.air_date', // This is the entry point of air_date and its been used everywhere. 'e.program_id', ); Logic I have used for timezone: function tz_translations( $lang = 'en' ) { $tz_translations = [ 'en' => [ 'PST' => [ 'label' => 'PT', 'diff' => 'subtract 3 hours', ], 'EST' => [ 'label'