Maison  >  Article  >  développement back-end  >  Fuseau horaire PHP

Fuseau horaire PHP

王林
王林original
2024-08-29 12:51:55254parcourir

La fonction PHP timezone est une fonction intégrée de PHP qui est principalement utilisée pour définir certaines valeurs par défaut avec le fuseau horaire qui seront ensuite utilisées par toutes les fonctions liées à la date ou à l'heure. Il existe des caractéristiques spéciales concernant le fuseau horaire PHP, comme le script dans le fuseau horaire PHP renverra false au cas où le fuseau horaire ne serait pas valide et qu'il s'avérerait vrai dans l'autre sens. Cette fonction accepte un seul argument qui est considéré comme un argument obligatoire et plusieurs arguments, comme l'argument multi-fonctions, ne sont pas indispensables pour faire fonctionner le fuseau horaire PHP.

PUBLICITÉ Cours populaire dans cette catégorie DEVELOPPEUR PHP - Spécialisation | Série de 8 cours | 3 tests simulés

Commencez votre cours de développement de logiciels libres

Développement Web, langages de programmation, tests de logiciels et autres

Syntaxe

bool date_default_timezone_set( $timezone_id )

Le flux syntaxique est dans lequel le booléen signifie la valeur booléenne et la fonction transmet certains paramètres comme :

  • Il est indispensable que cette fonction inclue un seul paramètre comme timezone_id qui sera responsable de la configuration du paramètre avec la date ou l'heure requise inclinée par rapport aux horaires UTC d'ASIE ou de KOLKATA.
  • Dans le cas où la fonction renvoie une valeur fausse, cet identifiant de fuseau horaire ne sera pas valide et sera vrai dans le cas contraire.

Comment fonctionne la fonction de fuseau horaire en PHP ?

Chaque fonction a un modèle de fonctionnement, tout comme la fonction de fuseau horaire en PHP qui fonctionne de la manière suivante :

  • 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:

Fuseau horaire PHP

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:

Fuseau horaire PHP

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:

Fuseau horaire PHP

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:

Fuseau horaire PHP

Conclusion

La fonction PHP timezone est une fonction intégrée très utile liée à l'heure et à la date qui est principalement utilisée chaque fois que l'utilisation nécessite d'implémenter la fonctionnalité liée à la date et à l'heure. De plus, le fuseau horaire PHP se mélange bien une fois le fuseau horaire confirmé pour affirmation et réflexion en termes de réglage et d'obtention de l'heure de manière uniforme.

Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!

Déclaration:
Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn