我正在尝试从<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时,它表明数组中没有任何内容,但为什么它会回显正确的日期..?