如何从表单中读取日期并计算时间戳

时间:2010-04-21 12:59:56

标签: php timestamp

我想根据输入日期计算时间戳。我想从用户输入(类似于12/12/2011)计算它我想我需要一个函数,将格式更改为可读的PHP,然后计算此日期的时间戳。也许我应该使用strtotime()函数?任何想法将不胜感激。

  $date = $_POST['date'];

 <input type="text" name="date" value="">

1 个答案:

答案 0 :(得分:2)

确实你可以使用strtotime:

if (($timestamp = strtotime($date)) === false) {
  echo "not good";
} else {
  echo $timestamp;
}

检查php documentation