pimplesushant-pere

Carbon TimeZone Convert Example

Jan 3rd, 2019
38
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <?php
  2. $timestamp = '2018-01-03 17:30:00';
  3. $date = \Illuminate\Support\Carbon::createFromFormat('Y-m-d H:i:s', $timestamp, 'GMT+05:30');
  4. $date->setTimezone('UTC');
  5. var_dump($date->format("Y-m-d H:i:s A"));
  6. ?>
Add Comment
Please, Sign In to add comment