php strtotime 函数UNIX时间戳

2015-01-24信息快讯网
如果 time 的格式是绝对时间则 now 参数不起作用。如果 time 的格式是相对时间则其所相对的时间由 now 提供,或者如果未提供 now 参数时用当前时间。失败时返回 -1。

<?php
echo strtotime ("now"), "\n";
echo strtotime ("10 September 2000"), "\n";
echo strtotime ("+1 day"), "\n";
echo strtotime ("+1 week"), "\n";
echo strtotime ("+1 week 2 days 4 hours 2 seconds"), "\n";
echo strtotime ("next Thursday"), "\n";
echo strtotime ("last Monday"), "\n";
?><?php
$str = 'Not Good';
if (($timestamp = strtotime($str)) === -1) {
echo "The string ($str) is bogus";
} else {
echo "$str == ". date('l dS of F Y h:i:s A',$timestamp);
}
?>
这个效果和用mktime()是一样的.
php Notice: Undefined index 错误提示解决方法
使用VisualStudio开发php的图文设置方法
php下关于Cannot use a scalar value as an array的解决办法
PHP Stream_*系列函数
PHP中的string类型使用说明
PHP STRING 陷阱原理说明
php 模拟POST|GET操作实现代码
php下使用strpos需要注意 === 运算符
php set_magic_quotes_runtime() 函数过时解决方法
php $_SERVER["REQUEST_URI"]获取值的通用解决方法
用sql命令修改数据表中的一个字段为非空(not null)的语句
PHP stristr() 函数(不区分大小写的字符串查找)
php set_time_limit(0) 设置程序执行时间的函数
mysql From_unixtime及UNIX_TIMESTAMP及DATE_FORMAT日期函数
PHP 最大运行时间 max_execution_time修改方法
PHP set_time_limit(0)长连接的实现分析
php array_intersect()函数使用代码
php str_pad 函数使用详解
PHP setcookie() cannot modify header information 的解决方法
Zend Studio for Eclipse的java.lang.NullPointerException错误的解决方法
Zend Studio 无法启动的问题解决方法
PHP strtr() 函数使用说明
Zend studio for eclipse中使php可以调用mysql相关函数的设置方法
PHP中str_replace函数使用小结
php preg_match_all结合str_replace替换内容中所有img
Cannot modify header information错误解决方法
PHP EOT定界符的使用详解
php magic_quotes_gpc的一点认识与分析
IStream与TStream之间的相互转换
php REMOTE_ADDR之获取访客IP的代码
How do I change MySQL timezone?
使用 MySQL Date/Time 类型
©2014-2024 dbsqp.com