0

我正在尝试使用 PHP 从 SQL 2008 数据库服务器获取当前日期/时间。当我对返回变量进行转储时,我看到以下内容 -

array (size=1) <br />
  'current_date_time' =>  <br />
    object(DateTime)[1] <br />
      **public 'date' => string '2012-12-18 15:01:35' (length=19)** <br />
      public 'timezone_type' => int 3 <br />
      public 'timezone' => string 'UTC' (length=3) <br />

问题:如何仅访问“日期”变量?我尝试了以下但没有奏效:

return $row["current_date_time"]->date

4

1 回答 1

0
$row["current_date_time"]->format('Y-m-d H:i:s');

应该做你需要的。它看起来像是$row["current_date_time"]一个DateTime对象。

于 2012-12-18T21:27:31.263 回答