Saturday, September 28, 2024
Google search engine
HomeLanguagesPHP | timezone_version_get() Function

PHP | timezone_version_get() Function

The timezone_version_get() function is an inbuilt function in PHP which is used to return the version of the timezone database. No parameters are required to be passed in the timezone_version_get() function.

Syntax:

string timezone_version_get()

Parameters: The timezone_version_get() function does not require any parameters.

Return Value: It returns the version of the timezone database as a string.

Exceptions The timezone_version_get() function produce the outputs 0.system because the PHP version hasn’t been upgraded.

Below program illustrate the timezone_version_get() function in PHP:

Program:




<?php
  
// Displaying the version of the timezone database
$timezone_db= timezone_version_get();
  
echo ("Timezone Database Version: " . $timezone_db );
?>


Output:

Timezone Database Version: 0.system

Reference: http://php.net/manual/en/function.timezone-version-get.php

RELATED ARTICLES

Most Popular

Recent Comments