我正在使用日历插件,我想更改一件事
有一个添加事件名称的 php 函数:
包括/日历/Calendar.class.php
$tab .= '<div class="namevent"> '.$event['event'].'</div>';
输出:我的事件名称
我想在事件标题中添加一个时间,找了一会儿我发现时间函数在
公共/事件.php
if(!empty($custom['stime'][0]))
echo '<br /><strong>'.$home[16].':</strong> '.$custom['stime'][0].' ';
if(!empty($custom['etime'][0]))
echo '<strong>'.$home[17].'</strong> '.$custom['etime'][0];
输出: 10: 00 到 11:00(假设你的活动时间是这些)
所以我尝试了这个:
$tab .= '<div class="namevent"> '.$custom['stime'][0].' - '.$custom['etime'][0].' '.$event['event'].'</div>';
Expeting 输出为:10:00 - 11:00 我的活动名称
但它没有用;
我做错了什么?
非常感谢!