1 March 2021

DateTimeZone class is built into php. If you get error that it's missing, then it's namespace problem.

Source code viewer
  1. new DateTimeZone('UTC');
  2. // Add a slash to solve the namespace problem.
  3. new \DateTimeZone('UTC');
Programming Language: PHP