Answers for "israel timezone in php 7"

PHP
2

asia time zone in php

<?php
date_default_timezone_set("Asia/Calcutta");   //India time (GMT+5:30)
echo date('d-m-Y H:i:s');
?>
Posted by: Guest on August-01-2020
1

west african timezone in php

<?php 
  //Specific to Nigeria
  date_default_timezone_set('Africa/Lagos');
	echo date('H:m:s');

//for Nairobi
  date_default_timezone_set('Africa/Nairobi');
	echo date('H:m:s');
Posted by: Guest on November-01-2021
2

how to get the list of available timezones in php

//To Get the list of timezones available in php
//use the static function listIdentifiers() on DateTimeZone class
$list = DateTimeZone::listIdentifiers();
print_r($list)
Posted by: Guest on April-25-2020
-1

php, Africa timezones

Africa/Nairobi
Posted by: Guest on August-04-2021

Browse Popular Code Answers by Language