while($chat = $result->fetch_object()){
// Returning the GMT (UTC) time of the chat creation:
$chat->time = array(
'hours' => date('H',strtotime($chat->ts)),
'minutes' => date('i',strtotime($chat->ts))
);
私はこのコードを使ってチャットメッセージと一緒に時間を表示しています。出力時間をISTタイムゾーンで表示するには、このコードをどのように変更できますか?ありがとうPHPのUTC時刻をIST(Asia/Kolkata)時間に変更します。