日期未从此代码中获取

时间:2017-08-07 18:05:45

标签: php date

我在我的php中使用此代码来获取日期

$blog_post->last_modified is equal to 2017-08-07 22:55:00 

我想拿起日期,我正在使用这段代码:

 date_format($blog_post->last_modified,'d');

它给我这个错误

  

警告:date_format()要求参数1为DateTimeInterface,第57行的C:\ xampp \ htdocs \ toturials \ portfolio \ blog.php中给出的字符串

1 个答案:

答案 0 :(得分:-1)

使用它:

date('Y-m-d', strtotime($blog_post->last_modified))
  

strtotime:将任何英文文本日期时间描述解析为   Unix时间戳,请参阅this

     

日期 - 格式化当地时间/日期,请参阅this