找到<time>标签,爆炸里面的日期,然后回显它

时间:2015-07-09 20:40:51

标签: php

我正在尝试从<time>代码中获取日期

$explode = explode( '<time class="abs">', file_get_contents($url))[1];
$get_date = explode("</time>" , $explode);
echo date_format(date_create($get_date[0]),"Y/m/d");

回显显示日期,但也有错误

Notice: Undefined offset: 1

当我执行var_dump时,它表明数组中没有任何内容,但为什么它会回显正确的日期..?

0 个答案:

没有答案