PHP timezone_location_get() 函数
PHP 教程
· 2019-01-24 10:27:19
实例
返回指定时区的位置信息:
<?php
$tz=timezone_open("Asia/Taipei");
echo timezone_location_get($tz);
?>
$tz=timezone_open("Asia/Taipei");
echo timezone_location_get($tz);
?>
定义和用法
timezone_location_get() 返回指定时区的位置信息。
语法
timezone_location_get(object);
| 参数 | 描述 |
|---|---|
| object | 必需。规定一个由 timezone_open() 返回的 DateTimeZone 对象。 |
技术细节
| 返回值: | 返回一个包含时区的位置信息的数组。 |
|---|---|
| PHP 版本: | 5.3+ |
点击查看所有 PHP 教程 文章: https://codercto.com/courses/l/5.html
Probability and Computing
Michael Mitzenmacher、Eli Upfal / Cambridge University Press / 2005-01-31 / USD 66.00
Assuming only an elementary background in discrete mathematics, this textbook is an excellent introduction to the probabilistic techniques and paradigms used in the development of probabilistic algori......一起来看看 《Probability and Computing》 这本书的介绍吧!