php strtotime 函数UNIX时间戳
作者:bea
如果 time 的格式是绝对时间则 now 参数不起作用。如果 time 的格式是相对时间则其所相对的时间由 now 提供,或者如果未提供 now 参数时用当前时间。失败时返回 -1。 <?php echo strtotime ("now"), ""; echo strtotime ("10 September 2000"), ""; echo strtotime ("+1 day"), ""; echo strtotime ("+1 week"), ""; echo
如果 time 的格式是绝对时间则 now 参数不起作用。如果 time 的格式是相对时间则其所相对的时间由 now 提供,或者如果未提供 now 参数时用当前时间。失败时返回 -1。
<?php
echo strtotime ("now"), "
";
echo strtotime ("10 September 2000"), "
";
echo strtotime ("+1 day"), "
";
echo strtotime ("+1 week"), "
";
echo strtotime ("+1 week 2 days 4 hours 2 seconds"), "
";
echo strtotime ("next Thursday"), "
";
echo strtotime ("last Monday"), "
";
?><?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
echo strtotime ("now"), "
";
echo strtotime ("10 September 2000"), "
";
echo strtotime ("+1 day"), "
";
echo strtotime ("+1 week"), "
";
echo strtotime ("+1 week 2 days 4 hours 2 seconds"), "
";
echo strtotime ("next Thursday"), "
";
echo strtotime ("last Monday"), "
";
?><?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 Ajax中文乱码问题解决方法
- php下几个常用的去空、分组、调试数组函数
- PHP 截取字符串 分别适合GB2312和UTF8编码情况
- PHP 操作文件的一些FAQ总结
- php实现从ftp服务器上下载文件树到本地电脑的程序
- PHP6 mysql连接方式说明
- PHP 数据库树的遍历方法
- 一周让你学会PHP 不错的学习资料
- 简化php模板页面中分页代码的解析
- 精通php的十大要点(上)
- PHP 加密/解密函数 dencrypt(动态密文,带压缩功能,支持中文)
- 防止MySQL注入或HTML表单滥用的PHP程序
- php 动态多文件上传
- PHP $_SERVER详解
- php 删除数组元素
- php完全过滤HTML,JS,CSS等标签
- php array_flip() 删除数组重复元素
- PHP mkdir()定义和用法
- php array_intersect()函数使用代码