我想根据输入日期计算时间戳。我想从用户输入(类似于12/12/2011)计算它我想我需要一个函数,将格式更改为可读的PHP,然后计算此日期的时间戳。也许我应该使用strtotime()函数?任何想法将不胜感激。
$date = $_POST['date'];
<input type="text" name="date" value="">
答案 0 :(得分:2)
确实你可以使用strtotime:
if (($timestamp = strtotime($date)) === false) {
echo "not good";
} else {
echo $timestamp;
}