Afișează lista derulantă

date_sun_info()

« date_default_timezone_set | date_sunrise »
<?php
// enter a $time or a $timestamp
// select a $city or enter the $latitude and $longitude

// gets a timestamp from a date
date_default_timezone_set(
    
? // string $timezone
);
$timestamp strtotime(
    
 // string $time
);

// gets the latitude and longitude of a city
list($latitude$longitude) = pbx_get_city_lat_lng(
    
? // string $city
);

$array date_sun_info (
    
// int $timestamp
    
// float $latitude
    
  // float $longitude
);

// shows the times in a readable format
$date_sun_info array_map(
    function(
$timestamp) { return date("H:i:s"$timestamp); },
    
$array);
?>
Rezultat
$timestamp = 1714828532
$latitude = 48.85
$longitude = 2.35
$array = [
  
'sunrise' => 1714796600,
  
'sunset' => 1714849876,
  
'transit' => 1714823238,
  
'civil_twilight_begin' => 1714794433,
  
'civil_twilight_end' => 1714852044,
  
'nautical_twilight_begin' => 1714791652,
  
'nautical_twilight_end' => 1714854824,
  
'astronomical_twilight_begin' => 1714788318,
  
'astronomical_twilight_end' => 1714858158,
]
$date_sun_info = [
  
'sunrise' => '06:23:20',
  
'sunset' => '21:11:16',
  
'transit' => '13:47:18',
  
'civil_twilight_begin' => '05:47:13',
  
'civil_twilight_end' => '21:47:24',
  
'nautical_twilight_begin' => '05:00:52',
  
'nautical_twilight_end' => '22:33:44',
  
'astronomical_twilight_begin' => '04:05:18',
  
'astronomical_twilight_end' => '23:29:18',
]
Exemple
#1 date_sun_info  (/* $timezone = "Europe/Paris" */
 /* $time = "now" */
 /* $city = "Paris" */
 
$timestamp,
 
$latitude,
 
$longitude)
#2 date_sun_info  (/* $timezone = "UTC" */
 /* $time = "2006-12-12" */
 
$timestamp,
 
31.7667,
 
35.2333)
#3 date_sun_info  (/* $timezone = "UTC" */
 
962409600,
 
50,
 
50)
Vezi și
array_map, date, date_default_timezone_set, date_sunrise, date_sunset, pbx_get_city_lat_lng, strtotime