我要和这个转圈!我正在执行以下操作:
- 通过 SQL/PHP 从 MSSQL 日期时间字段中检索日期
- 通过查询字符串将日期发送到新的 PHP 页面
- 尝试在新的 SQL 查询中使用该日期
我在这里遇到问题。
如果我使用回声:
echo $_REQUEST['rSessionDate'];
output: 15/10/2012
这很好,但是当我在 SQL 查询中使用它时,我没有得到我期望的结果,所以我认为最好的办法是确保它首先被识别为日期。
如果我使用 date_format():
echo date_format($_REQUEST['rSessionDate'],'Y-m-d');
output: Warning: date_format() expects parameter 1 to be DateTime, string given in ...
如果我使用 strtotime():
echo strtotime($_REQUEST['rSessionDate']);
output: (nothing)
如果我使用日期():
echo date('Y-m-d H:i',$_REQUEST['rSessionDate']);
output: Notice: A non well formed numeric value encountered in ...
如果我将 date() 与 strtotime() 一起使用:
echo date('Y-m-d H:i',strtotime($_REQUEST['rSessionDate']));
output: 1970-01-01 01:00
我确定我完全错过了一些简单的东西。
编辑:我尝试了一些我发现的新功能:
$rSessionDate = new DateTime($_REQUEST['rSessionDate']);
echo $rSessionDate->format('Y-m-d H:i:s');
output: Fatal error: Uncaught exception 'Exception' with message 'DateTime::__construct(): Failed to parse time string (15/10/2012) at position 0 (1): Unexpected character'
和:
$rSessionDate = date_create($_REQUEST['rSessionDate']);
echo date_format($rSessionDate, 'Y-m-d H:i:s');
output: Warning: date_format() expects parameter 1 to be DateTime, boolean given i
编辑2:
我尝试过使用 CAST:
SELECT fCourseCode ,fCourseTitle FROM tCourses WHERE fCourseCode = '4B' AND (ISNULL(fValidStart, 0) <= CAST('2012-10-15 00:00:00' as DATETIME))
但这失败并出现错误“将 varchar 数据类型转换为日期时间数据类型导致值超出范围”