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


PHP str::word方法代码示例

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


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

示例1: header

<?php

try {
    $tpl = $PAGE->start();
    @ini_set('default_charset', NULL);
    header('Content-type: text/css');
    $css = str::word($PAGE->ext[0], true);
    if ($css != '') {
        setCookie(COOKIE_A . 'page_css', $css, $_SERVER['REQUEST_TIME'] + DEFAULT_LOGIN_TIMEOUT, COOKIE_PATH, COOKIE_DOMAIN);
    } else {
        $css = $_COOKIE[COOKIE_A . 'page_css'];
    }
    if ($css == '') {
        $css = 'default';
    }
    $tpl->display($x = 'tpl:css.wap_' . $css . '.css');
} catch (exception $ERR) {
    throw $ERR;
}
开发者ID:istrwei,项目名称:hu60t,代码行数:19,代码来源:wap.css.php

示例2: tplPath

 public function tplPath($name, $ext = '.tpl')
 {
     if (isset($this->tplCache[$ext][$name])) {
         return $this->tplCache[$ext][$name];
     }
     $info = explode('.', $name);
     if (count($info) == 1) {
         $cid = $PAGE['cid'];
         $pid = str::word($name, true);
         $bid = $PAGE['bid'];
     } elseif (count($info) == 2) {
         $cid = str::word($info[0], true);
         $pid = str::word($info[1], true);
         $bid = $PAGE['bid'];
     } else {
         $cid = str::word($info[0], true);
         $pid = str::word($info[1], true);
         $bid = str::word($info[2], true);
     }
     if ($cid == '') {
         $cid = $this->page['cid'];
     }
     if ($pid == '') {
         $pid = $this->page['pid'];
     }
     if ($bid == '') {
         $bid = $this->page['bid'];
     }
     $tpl = $this->page['tpl'];
     if ($tpl != 'default') {
         $path = TPL_DIR . "/{$tpl}/{$cid}/{$pid}.{$bid}{$ext}";
         if (!is_file($path)) {
             $path = TPL_DIR . "/{$tpl}/{$cid}/{$pid}{$ext}";
         }
     }
     if ($tpl == 'default' || !is_file($path)) {
         $path = PAGE_DIR . "/{$cid}/{$pid}.{$bid}{$ext}";
     }
     if (!is_file($path)) {
         $path = PAGE_DIR . "/{$cid}/{$pid}{$ext}";
     }
     if (!is_file($path)) {
         if ($ext == '.tpl') {
             $type = '模板';
             $code = 2404;
         } elseif ($ext == '.conf') {
             $type = '配置';
             $code = 3404;
         } else {
             $type = 'Smarty';
             $code = 4404;
         }
         throw new pageexception("{$type}文件 \"{$name}\" 不存在", $code);
     }
     $this->tplCache[$ext][$name] = $path;
     return $path;
 }
开发者ID:istrwei,项目名称:hu60t,代码行数:57,代码来源:page.php


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