我想要实现的是:
$since_yesterday = new DateTime();
$since_yesterday->sub(new DateInterval('P1D'));
$this->db->where('LastModified >= ', $since_yesterday);
return $this->db->get('Table1')->result_array();
消息:类 DateTime 的对象无法转换为字符串
构建一个 DateTime PHP 对象并使用它来过滤 MS SQL Server 行。我正在使用“mssql”驱动程序,我可以连接和执行查询,我只是不知道如何处理来自 CI Active Record 和 MS SQL Server 的 DateTime 数据转换。