-3

我有一个日期字段和一个时间字段供用户输入日期和时间,然后我需要将其转换为时间戳。这是我的代码

<input type='text' name='date' />
<input type='text' name='time' />

我怎样才能把它们放在一起,然后生成一个时间戳放在数据库中

任何帮助表示感谢

4

2 回答 2

2

使用strtotime()功能:

$ts = strtotime($_POST['date'].' '.$_POST['time']);
于 2013-04-11T13:34:01.377 回答
0

尝试这个...

$timestamp = strtotime('date');
于 2013-04-11T13:36:05.680 回答