我正在尝试从 mssql 服务器表中提取数据以使用 php 在网页中打印 html 表,我拉下的数据是“DateTime”列,当我运行脚本时,我收到错误消息“类 DateTime 对象不能转换为字符串"
以下是我的脚本。谁能指出我正确的方法?非常感谢你。
$sql = "SELECT DateCreated FROM Item WHERE Inactive = '0' ";
$stmt = sqlsrv_query( $conn, $sql );
if( $stmt === false) {
die( print_r( sqlsrv_errors(), true) );
}
while( $row = sqlsrv_fetch_array( $stmt, SQLSRV_FETCH_ASSOC) ) {
$html_table = '<table border="1" cellspacing="0" cellpadding="2">';
$html_table .= '<tr><td width="100" align="center">' .$row['DateCreated'].'</td></tr>';
$html_table .= '</table>';
echo $html_table;
}
sqlsrv_free_stmt( $stmt);