当前位置: 首页>>代码示例>>PHP>>正文


PHP SC::exists方法代码示例

本文整理汇总了PHP中SC::exists方法的典型用法代码示例。如果您正苦于以下问题:PHP SC::exists方法的具体用法?PHP SC::exists怎么用?PHP SC::exists使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在SC的用法示例。


在下文中一共展示了SC::exists方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: Locator

if (!$this->get('ad_network')) {
    $this->set('ad_network', 'doubleclick');
}
try {
    // this observer is brought to you by the letter "O"...
    $o = $this->controller->getObserver();
    // if we even have a request and an id...
    $l = new Locator($o);
    if ($o->exists('request') && $o->get('request')->exists('id')) {
        $forum_id = intval($this->controller->getObserver()->get('request')->get('id'));
        unset($o);
    } else {
        $forum_id = 0;
    }
    // see if we need to show something here...
    if (SC::exists('board_config.ad_display_forums') && strlen(SC::get('board_config.ad_display_forums')) > 0) {
        $params = explode(";", SC::get('board_config.ad_display_forums'));
        foreach ($params as $id => $param) {
            if (empty($param)) {
                continue;
            }
            // throw away empty rows...
            $section = substr($param, 0, strpos($param, "("));
            // get the main section name...
            if ($l->location == $section) {
                // if we matched sections, get the sub-section directives, otherwise skip it...
                $sub = array();
                $matches = ereg('\\([^\\(\\)]*\\)', $param, $sub);
                $ad_params = explode(",", str_replace(array('(', ')'), NULL, $sub[0]));
            }
        }
开发者ID:GeniusXalid,项目名称:php-mvc,代码行数:31,代码来源:wskyscraper.template.php


注:本文中的SC::exists方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。