0

我正在使用日历插件,我想更改一件事

有一个添加事件名称的 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 我的活动名称

但它没有用;

我做错了什么?

非常感谢!

4

1 回答 1

1

确保$custom['stime'][0]$custom['etime'][0]存在,每个都有一个var_dump()print_r()。在导致错误的行之前添加以下代码:

var_dump($custom['stime']);  // Be sure the var is not undefined and [0] exists
var_dump($custom['etime']);
于 2013-02-10T13:35:03.730 回答