函数strtotime()中echo变量的问题

时间:2011-07-18 17:36:04

标签: php codeigniter echo strtotime

为什么不在这段代码中使用echo(函数strtotime)? 没有显示任何内容。

$ok = '2011/07/18'; 
echo strtotime($ok);

2 个答案:

答案 0 :(得分:1)

我尝试了你的代码并且工作正常。

#!/usr/bin/php
<?php


$ok = '2011/07/18';
echo strtotime($ok);


echo date("F j, Y, g:i:s a",strtotime($ok));
?>

回复:1310965200 2011年7月18日上午12:00:00

答案 1 :(得分:0)

我个人didn't get anything unexpected。您是否知道您将获得一个号码以回复strtotime而不是格式化日期?你必须打电话给strftime(或类似的)来格式化它。