我正在使用Kirby CMS。
我正在尝试获取我的最新帖子,但前提是我的最新帖子与我的 $latest 变量匹配。
$today = new DateTime("now"); //Declare today
$startdate = new DateTime("2013-06-30"); //Declare startdate
$interval = $startdate->diff($today); //Find the difference between startdate & today
$latest = $interval->format('%a'); //Declare $latest variable to be that interval, formatted as integer
$posts = $pages->find('posts')->children(); //Declare posts
$latestpost = $posts->find($latest); //Find post which matches the $latest variable
我试图达到$latestpost->url();
但只有在$latestpost
实际存在的情况下。当它现在不存在时,它会作为非对象出现。
因为我得到的方式$latestpost
,isset
并且defined
不工作。
我还能怎么做?