开发者问题收集

从 SQL 数据库获取日期会产生错误

2018-08-28
58

我一直试图从我的 SQL 服务器数据库获取校准日期,但似乎不起作用。

while($row = sqlsrv_fetch_array($result))  
{ 
$output .= "<tr><td>".$row['businessUnit']."</td><td>".
    $row['productGroup']."</td><td>".
    $row['deviceType']."</td><td>".
    $row['serialNumber']."</td><td>".    
    $row['location']."</td><td></td><td>".
    $row['condition']."</td><td>".
    $row['calibrationDate']."</td><td>".
    $row['itemDescription']."</td><td>
    <input type='checkbox'></input></td></tr>";  
}  
return $output;

如果我这样做,我会收到此错误:无法将 DateTime 类的对象转换为字符串

但是,当我尝试像这样格式化它时:

$row['calibrationDate']->format('Y-m-d')

我收到另一个错误:未捕获的错误:在 null 上调用成员函数 format()

我也曾尝试先将其转换为新的 DateTime:

$date = new DateTime($row['calibrationDate']);

然后我得到:未捕获的类型错误:DateTime::__construct() 期望参数 1 为字符串,给定对象

我不知道这是否与问题有关,但并非所有列都有日期。 数据库中的数据类型为“date”,格式为“Y-m-d”。我如何获取要显示的日期?

3个回答

如果要将日期和时间类型(datetime、date、time、datetime2 和 datetimeoffset)检索为字符串,则必须将连接选项 ReturnDatesAsStrings 设置为 true

$server = 'server\instance,port';
$cinfo = array(
    "ReturnDatesAsStrings"=>true,
    "Database"=>'database',
    "UID"=>"user",
    "PWD"=>"password"
);

有关 sqlsrv_connect() 连接选项的文档可在 此处 找到。

Zhorov
2018-08-28

您应该使用 strtotime date 函数

$calibrationDate= strtotime($row['calibrationDate']);
echo date('Y-m-d H:i:s', $calibrationDate);
Bilal Ahmed
2018-08-28

您可以像这样使用 php strtotime() 和 date() 函数

date('Y-m-d H:i:s',strtotime(($row['calibrationDate']))."</td><td>".
RAUSHAN KUMAR
2018-08-28