La función DateTimeZone::getName() es una función incorporada en PHP que se usa para devolver el nombre de la zona horaria creada.
Sintaxis:
DateTimeZone::getName()
Parámetros: Esta función no acepta ningún parámetro.
Valores devueltos: esta función devuelve el nombre de la zona horaria creada.
Los siguientes programas ilustran la función DateTimeZone::getName():
Programa 1 :
<?php // PHP program to illustrate DateTimeZone::getName() // function // Initialising a timezone $timeZone = "Asia/Kolkata"; // Creating DateTimeZone() object with // the above timezone $DatetimeZone = new DateTimeZone($timeZone); // Getting the name of timezone print_r($DatetimeZone->getName()); ?>
Producción:
Asia/Kolkata
Programa 2 :
<?php // PHP program to illustrate DateTimeZone::getName() // function // Creating DateTimeZone() object with // a specific timezone $DatetimeZone = new DateTimeZone("Asia/Singapore"); // Getting the name of timezone print_r($DatetimeZone->getName()); ?>
Producción:
Asia/Singapore
Referencia
https://devdocs.io/php/datetimezone.getname
Publicación traducida automáticamente
Artículo escrito por Kanchan_Ray y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA