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


PHP Str::pure2html方法代码示例

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


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

示例1: GetAsHTML

 public function GetAsHTML($sValue, $oHostObject = null, $bLocalize = true)
 {
     return Str::pure2html((string) $sValue);
 }
开发者ID:leandroborgeseng,项目名称:bhtm,代码行数:4,代码来源:attributedef.class.inc.php

示例2: get_callstack

 public static function get_callstack($iLevelsToIgnore = 0, $aCallStack = null)
 {
     if ($aCallStack == null) {
         $aCallStack = debug_backtrace();
     }
     $aCallStack = array_slice($aCallStack, $iLevelsToIgnore);
     $aDigestCallStack = array();
     $bFirstLine = true;
     foreach ($aCallStack as $aCallInfo) {
         $sLine = empty($aCallInfo['line']) ? "" : $aCallInfo['line'];
         $sFile = empty($aCallInfo['file']) ? "" : $aCallInfo['file'];
         if ($sFile != '') {
             $sFile = str_replace('\\', '/', $sFile);
             $sAppRoot = str_replace('\\', '/', APPROOT);
             $iPos = strpos($sFile, $sAppRoot);
             if ($iPos !== false) {
                 $sFile = substr($sFile, strlen($sAppRoot));
             }
         }
         $sClass = empty($aCallInfo['class']) ? "" : $aCallInfo['class'];
         $sType = empty($aCallInfo['type']) ? "" : $aCallInfo['type'];
         $sFunction = empty($aCallInfo['function']) ? "" : $aCallInfo['function'];
         if ($bFirstLine) {
             $bFirstLine = false;
             // For this line do not display the "function name" because
             // that will be the name of our error handler for sure !
             $sFunctionInfo = "N/A";
         } else {
             $args = '';
             if (empty($aCallInfo['args'])) {
                 $aCallInfo['args'] = array();
             }
             foreach ($aCallInfo['args'] as $a) {
                 if (!empty($args)) {
                     $args .= ', ';
                 }
                 switch (gettype($a)) {
                     case 'integer':
                     case 'double':
                         $args .= $a;
                         break;
                     case 'string':
                         $a = Str::pure2html(self::beautifulstr($a, 64, true, false));
                         $args .= "\"{$a}\"";
                         break;
                     case 'array':
                         $args .= 'array(' . count($a) . ')';
                         break;
                     case 'object':
                         $args .= 'Object(' . get_class($a) . ')';
                         break;
                     case 'resource':
                         $args .= 'Resource(' . strstr($a, '#') . ')';
                         break;
                     case 'boolean':
                         $args .= $a ? 'true' : 'false';
                         break;
                     case 'NULL':
                         $args .= 'null';
                         break;
                     default:
                         $args .= 'Unknown';
                 }
             }
             $sFunctionInfo = "{$sClass}{$sType}{$sFunction}({$args})";
         }
         $aDigestCallStack[] = array('File' => $sFile, 'Line' => $sLine, 'Function' => $sFunctionInfo);
     }
     return $aDigestCallStack;
 }
开发者ID:leandroborgeseng,项目名称:bhtm,代码行数:70,代码来源:MyHelpers.class.inc.php


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