“Laravel Set Set Time Strena” Kod odpowiedzi

Data formatu węgla z strefą czasową w widokach Laravel

$date = \Carbon\Carbon::createFromFormat('Y-m-d H:i:s',$calc[0]['created_at']);
$date->setTimezone('Asia/Karachi');
$date->format('d M, Y H:i A')
Fani385

Carbon ustawił teraz strefę czasu

Carbon::now('UTC')

//or 
now('UTC')
Tiago F2

Laravel Set Set Time Strena

in the AppServiceProvider.php you can add the php functionality to alter the timestamp for the whole project

public function boot()
{
    Schema::defaultStringLength(191);
    date_default_timezone_set('Asia/Aden');
}
Xabos

Carbon ustawił teraz strefę czasu

Carbon::now('UTC')
Tiago F2

Odpowiedzi podobne do “Laravel Set Set Time Strena”

Pytania podobne do “Laravel Set Set Time Strena”

Więcej pokrewnych odpowiedzi na “Laravel Set Set Time Strena” w PHP

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu