Heim  >  Artikel  >  Backend-Entwicklung  >  PHP-Zeitzone

PHP-Zeitzone

王林
王林Original
2024-08-29 12:51:55255Durchsuche

Die PHP-Zeitzonenfunktion ist eine in PHP integrierte Funktion, die hauptsächlich zum Einrichten einiger Standardwerte mit Zeitzone verwendet wird, die von allen Funktionen im Zusammenhang mit Datum oder Uhrzeit weiter verwendet werden. Es gibt einige Besonderheiten bei der PHP-Zeitzone, wie zum Beispiel, dass das Skript in der PHP-Zeitzone „false“ zurückgibt, wenn die Zeitzone nicht gültig ist, und sich andersherum als wahr herausstellt. Diese Funktion akzeptiert ein einzelnes Argument, das als obligatorisches Argument gilt, und mehrere Argumente, da ein Multifunktionsargument kein Muss ist, damit die PHP-Zeitzone funktioniert.

WERBUNG Beliebter Kurs in dieser Kategorie PHP-ENTWICKLER - Spezialisierung | 8-Kurs-Reihe | 3 Probetests

Starten Sie Ihren kostenlosen Softwareentwicklungskurs

Webentwicklung, Programmiersprachen, Softwaretests und andere

Syntax

bool date_default_timezone_set( $timezone_id )

Der Syntaxfluss ist so, dass „bool“ den booleschen Wert angibt und die Funktion einige Parameter übergibt, wie zum Beispiel:

  • Es ist ein Muss, dass diese Funktion einen einzelnen Parameter wie timezone_id enthält, der für die Einrichtung des Parameters mit dem erforderlichen Datum oder der erforderlichen Uhrzeit in Anlehnung an die UTC-Zeiten von ASIEN oder KOLKATA verantwortlich ist.
  • Falls die Funktion den Wert „false“ zurückgibt, ist die Berücksichtigung dieser Zeitzonen-ID ungültig und andernfalls wahr.

Wie funktioniert die Zeitzonenfunktion in PHP?

Jede Funktion hat ein Arbeitsmuster, ebenso die Zeitzonenfunktion in PHP, die wie folgt funktioniert:

  • timezone function is an inbuild function in PHP which is mostly used for setting the values with respect to the values given but still it needs some more setting and the patterns as per requirement.
  • Also, there are other methods with timezone including setting up the PHP timezone function with setTimeZone and getTimeZone.
  • Version compatibility in PHP also plays a pivotal role like it should be above 5 with its own pros and cons.
  • Date_timezone_set function is used exclusively for setting the timezone with Date Time Object which means it sets for the new DateTimeObject.
  • DateTime::setData function as part of Timezone function resets the current DateTime Object to a different date and time.
  • This timezone function involves usage of both date and time which means that the date used will be fetched from the date
  • Once this date or time function set up is done then the format for both the date and time function can be modified and can be made updated in different ways and format.
  • Also, the function depends on many local setups of the server with the daylight-saving time and leap years into consideration.
  • For setting up local server and the environment it is very much needed to make this PHP function as part of PHP pre-installation phase which means no third-party installation is required for making use of PHP functions.
  • This behavior of functions gets affected or changed whenever the function with php.ini is used for manipulation with the added aid of timezone.
  • timezone_abbreviations_list() function is mostly used for returning an associative array containing destination, offset, and any timezone name.
  • This function is used for accepting a single parameter for manipulation which involves timezone_identifier to make traversal within the function.
  • The return type is in boolean format with consideration of fact that it can be either true or false depending on the function requirement.
  • After PHP Version more than 5 which means PHP version with 5 and above will have calls made to date and time by generating E_NOTICE which is a kind of acknowledgement with the fact that the user is receiving a valid or true notice as a message.
  • If in case the end user receives or get some invalidated or false response as E_Warning then the system settings with the TZ environment variable will receive acknowledgment in warning format.
  • This is not the only option to make PHP timezone in working format rather an alternative to this procedure can be made with the INI default settings with time zone i.e. by setting the date time with date.timezone to set default timezone.
  • The timezone identifier plays an important role with the fact that timezone related to identifiers will be according to the locations and it can be in the form of UTC timing like Africa, Asia, Europe etc.
  • Versions with 5.1.2 supports for the function having validation for the timezoneID parameter whereas the version 5.3.0 supports for acknowledgement with E_Warning rather than E_strict statements.
  • Date_default_timezone_get() helps in getting the default timezone that will be aided with the date and time format present in the script.

Examples of PHP timezone

Given below are the examples of PHP timezone:

Example #1

This program demonstrates the way to represent default timezone to get the value set up with the default timezone according to India and USA as shown in the output.

Code:

<!DOCTYPE html>
<html>
<body>
<?php
date_default_timezone_set('India/USA');
$sc_tz = date_default_timezone_get();
if (strcmp($sc_tz, ini_get('date.timezone')))
{
echo 'ini_timezone varies from the ini_timezone present in the script.';
}
else
{
echo 'Both the timezone including ini and script matches with each other.';
}
?>
</body>
</html>

Output:

PHP-Zeitzone

Example #2

This program demonstrates how to call for the date and time function with respect to set the date and time in an object-oriented fashion as shown in the output.

Code:

<!DOCTYPE html>
<html>
<body>
<?php
$dt = new DateTime('2020-08-05', new DateTimeZone('Europe/London'));
echo $dt->format('Y-m-d H:i:sP') . "\n";
$dt->setTimezone(new DateTimeZone('Australia/sydney'));
echo $dt->format('Y-m-d H:i:sP') . "\n";
?>
</body>
</html>

Output:

PHP-Zeitzone

Example #3

This program demonstrates the creation of date using date_create() function from abbreviation list to make the entire list of function working with the created date as shown in the output.

Code:

<!DOCTYPE html>
<html>
<body>
<?php
$dt=date_create();
echo date_timestamp_get($dt);
?>
</body>
</html>

Output:

PHP-Zeitzone

Example #4

This program demonstrates the date with timestamp to get created and then representing it as shown in the output.

Code:

<!DOCTYPE html>
<html>
<body>
<?php
$dt=date_create();
date_timestamp_set($dt,12167845);
echo date_format($dt,"U = Y-m-d H:i:s");
?>
</body>
</html>

Output:

PHP-Zeitzone

Fazit

Die PHP-Zeitzonenfunktion ist eine sehr nützliche eingebaute Funktion in Bezug auf Uhrzeit und Datum, die hauptsächlich dann verwendet wird, wenn die Verwendung die Implementierung der Funktionalität in Bezug auf Datum und Uhrzeit erfordert. Außerdem fügt sich die PHP-Zeitzone gut ein, sobald die Zeitzone bestätigt ist, um eine Bestätigung und Überlegung hinsichtlich der Einstellung und des einheitlichen Erhaltens der Zeit zu erhalten.

Das obige ist der detaillierte Inhalt vonPHP-Zeitzone. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn
Vorheriger Artikel:PHP-Datums-/UhrzeitfunktionenNächster Artikel:PHP-Datums-/Uhrzeitfunktionen