PHP是真还是假

时间:2011-07-21 11:55:00

标签: php

我正在尝试为wordpress修改名为“events calendar”的插件,以显示过去的事件。

我找到了这个功能:

/**
 * Returns true if the query is set for past events, false otherwise
 * 
 * @return bool
 */
function events_displaying_past() {
    global $spEvents;
    return ($spEvents->displaying == "past") ? true : false;
}

我可以将其默认为true吗?

1 个答案:

答案 0 :(得分:3)

/**
     * Returns true if the query is set for past events, false otherwise
     * 
     * @return bool
     */
    function events_displaying_past() {
        global $spEvents;
        return ($spEvents->displaying == "past" || !isset($spEvents->displaying)) ? true : false;
    }