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


PHP P2Util::escapeDirPath方法代码示例

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


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

示例1: _cachePathForCookieByHost

/**
 * ホスト名からクッキーファイルパスを返す
 *
 * @return  string
 */
function _cachePathForCookieByHost($host)
{
    global $_conf;
    $cachefile = $_conf['cookie_dir'] . DIRECTORY_SEPARATOR . P2Util::escapeDirPath($host) . DIRECTORY_SEPARATOR . $_conf['cookie_file_name'];
    FileCtl::mkdirFor($cachefile);
    return $cachefile;
}
开发者ID:poppen,项目名称:p2,代码行数:12,代码来源:post.php

示例2: _p2DirOfHost

 /**
  * hostからrep2の各種データ保存ディレクトリを返す
  *
  * @access  private
  * @param   string  $base_dir
  * @param   string  $host
  * @param   bool    $dir_sep
  * @return  string
  */
 function _p2DirOfHost($base_dir, $host, $dir_sep = true)
 {
     static $hostDirs_ = array();
     $key = $base_dir . DIRECTORY_SEPARATOR . $host;
     if (array_key_exists($key, $hostDirs_)) {
         if ($dir_sep) {
             return $hostDirs_[$key] . DIRECTORY_SEPARATOR;
         }
         return $hostDirs_[$key];
     }
     $host = P2Util::normalizeHostName($host);
     // 2channel or bbspink
     if (P2Util::isHost2chs($host)) {
         $host_dir = $base_dir . DIRECTORY_SEPARATOR . '2channel';
         // machibbs.com
     } elseif (P2Util::isHostMachiBbs($host)) {
         $host_dir = $base_dir . DIRECTORY_SEPARATOR . 'machibbs.com';
         // jbbs.livedoor.jp (livedoor レンタル掲示板)
     } elseif (P2Util::isHostJbbsShitaraba($host)) {
         /*
         if (DIRECTORY_SEPARATOR == '/') {
             $host_dir = $base_dir . DIRECTORY_SEPARATOR . $host;
         } else {
             $host_dir = $base_dir . DIRECTORY_SEPARATOR . str_replace('/', DIRECTORY_SEPARATOR, $host);
         }
         */
         $host_dir = $base_dir . DIRECTORY_SEPARATOR . P2Util::escapeDirPath($host);
         // livedoor レンタル掲示板以外でスラッシュ等の文字を含むとき
     } elseif (preg_match('/[^0-9A-Za-z.\\-_]/', $host)) {
         $host_dir = $base_dir . DIRECTORY_SEPARATOR . P2Util::escapeDirPath($host);
         /*
         if (DIRECTORY_SEPARATOR == '/') {
             $old_host_dir = $base_dir . DIRECTORY_SEPARATOR . $host;
         } else {
             $old_host_dir = $base_dir . DIRECTORY_SEPARATOR . str_replace('/', DIRECTORY_SEPARATOR, $host);
         }
         if (is_dir($old_host_dir)) {
             rename($old_host_dir, $host_dir);
             clearstatcache();
         }
         */
         // その他
     } else {
         $host_dir = $base_dir . DIRECTORY_SEPARATOR . P2Util::escapeDirPath($host);
     }
     // キャッシュする
     $hostDirs_[$key] = $host_dir;
     // ディレクトリ区切り文字を追加
     if ($dir_sep) {
         $host_dir .= DIRECTORY_SEPARATOR;
     }
     return $host_dir;
 }
开发者ID:poppen,项目名称:p2,代码行数:62,代码来源:P2Util.php


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