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


PHP DBG::dbg_fh方法代码示例

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


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

示例1: setup

 /**
  * Sets up logging to a file
  *
  * On each successive call, this will close the current log file handle
  * if already open.
  * If logging to FirePHP is enabled, it will then return true.
  * Otherwise, the log file will be opened using the current parameter
  * values
  * @param   string  $file   The file name
  * @param   string  $mode   The access mode (as with {@see fopen()})
  * @return  boolean         True
  * @todo    The result of calling fopen should be verified and be
  *          reflected in the return value
  */
 static function setup($file, $mode = 'a')
 {
     if (self::$log_firephp) {
         return true;
     }
     //no need to setup ressources, we're using firephp
     $suffix = '';
     /*$nr = 0;
       while (file_exists($file.$suffix)) {
           $suffix = '.'.++$nr;
       }*/
     if ($file == 'php://output') {
         self::$dbg_fh = fopen($file, $mode);
         if (self::$dbg_fh) {
             return true;
         } else {
             return false;
         }
     } elseif (class_exists('\\Cx\\Lib\\FileSystem\\File')) {
         try {
             self::$dbg_fh = new \Cx\Lib\FileSystem\File(ASCMS_DOCUMENT_ROOT . '/update/' . $file . $suffix);
             self::$dbg_fh->touch();
             if (self::$dbg_fh->makeWritable()) {
                 return true;
             } else {
                 return false;
             }
         } catch (\Cx\Lib\FileSystem\FileSystemException $e) {
             return false;
         }
     } else {
         self::$dbg_fh = fopen(ASCMS_DOCUMENT_ROOT . '/update/' . $file . $suffix, $mode);
         if (self::$dbg_fh) {
             return true;
         } else {
             return false;
         }
     }
 }
开发者ID:Niggu,项目名称:cloudrexx,代码行数:53,代码来源:DBG.php


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