PHP timezone_location_get() 函數(shù)
PHP timezone_location_get() 函數(shù)
實(shí)例
返回指定時(shí)區(qū)的位置信息:
<?php
$tz=timezone_open("Asia/Taipei");
echo timezone_location_get($tz);
?>
$tz=timezone_open("Asia/Taipei");
echo timezone_location_get($tz);
?>
運(yùn)行實(shí)例 ?
定義和用法
timezone_location_get() 返回指定時(shí)區(qū)的位置信息。
語法
timezone_location_get(object);
參數(shù) | 描述 |
---|---|
object | 必需。規(guī)定一個(gè)由 timezone_open() 返回的 DateTimeZone 對象。 |
技術(shù)細(xì)節(jié)
返回值: | 返回一個(gè)包含時(shí)區(qū)的位置信息的數(shù)組。 |
---|---|
PHP 版本: | 5.3+ |

相關(guān)文章
- PHP 數(shù)組
- PHP 數(shù)組排序
- PHP While 循環(huán)
- PHP 魔術(shù)常量
- PHP $_GET 變量
- PHP $_POST 變量
- PHP Session
- PHP Secure E-mails
- PHP array_intersect_key() 函數(shù)
- PHP array_intersect_uassoc() 函數(shù)
- PHP array_key_exists() 函數(shù)
- PHP array_pad() 函數(shù)
- PHP array_reduce() 函數(shù)
- PHP array_slice() 函數(shù)
- PHP list() 函數(shù)
- PHP natcasesort() 函數(shù)
- PHP reset() 函數(shù)
- PHP rsort() 函數(shù)
- PHP uksort() 函數(shù)
- PHP cURL 函數(shù)