我正在使用wordpress插件。此插件的功能tribe_events_week_get_the_date()
打印日期类似 2016-05-31
我想自定义日期。所以我使用这段代码
<?php
$cDate = tribe_events_week_get_the_date();
$cToday = new DateTime($cDate);
echo $cToday->format(' D ');
echo $cToday->format('n . j');
?>
打印此代码时,$ cDate值也会自动打印。我的意思是tribe_events_week_get_the_date()
仍然打印它的价值。
我只想要回声值。
知道如何使用这个功能吗?