本文整理汇总了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;
}
}
}