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


PHP CliDumper::dumpLine方法代码示例

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


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

示例1: dumpLine

 /**
  * {@inheritdoc}
  */
 protected function dumpLine($depth, $endOfValue = false)
 {
     if (-1 === $this->lastDepth && isset($_SERVER['REQUEST_TIME_FLOAT'])) {
         if ($this->colors) {
             echo sprintf("[%sm%s[m", $this->styles['ref'], $this->prefix());
         } else {
             echo $this->prefix();
         }
         echo "\n";
     }
     $this->lastDepth = $depth;
     parent::dumpLine($depth, $endOfValue);
 }
开发者ID:cawaphp,项目名称:cawa,代码行数:16,代码来源:CliDumper.php

示例2: dumpLine

 /**
  *
  * {@inheritdoc}
  *
  */
 protected function dumpLine($depth, $endOfValue = false)
 {
     if ($endOfValue && 0 < $depth) {
         $this->line .= ',';
     }
     $this->line = $this->formatter->format($this->line);
     parent::dumpLine($depth, $endOfValue);
 }
开发者ID:sapwoo,项目名称:portfolio,代码行数:13,代码来源:Dumper.php

示例3: dumpLine

    /**
     * {@inheritdoc}
     */
    protected function dumpLine($depth)
    {
        if (-1 === $this->lastDepth) {
            $this->line = sprintf($this->dumpPrefix, $this->dumpId, $this->indentPad).$this->line;
        }
        if (!$this->headerIsDumped) {
            $this->line = $this->getDumpHeader().$this->line;
        }

        if (-1 === $depth) {
            $this->line .= sprintf($this->dumpSuffix, $this->dumpId);
        }
        $this->lastDepth = $depth;

        // Replaces non-ASCII UTF-8 chars by numeric HTML entities
        $this->line = preg_replace_callback(
            '/[\x80-\xFF]+/',
            function ($m) {
                $m = unpack('C*', $m[0]);
                $i = 1;
                $entities = '';

                while (isset($m[$i])) {
                    if (0xF0 <= $m[$i]) {
                        $c = (($m[$i++] - 0xF0) << 18) + (($m[$i++] - 0x80) << 12) + (($m[$i++] - 0x80) << 6) + $m[$i++] - 0x80;
                    } elseif (0xE0 <= $m[$i]) {
                        $c = (($m[$i++] - 0xE0) << 12) + (($m[$i++] - 0x80) << 6) + $m[$i++]  - 0x80;
                    } else {
                        $c = (($m[$i++] - 0xC0) << 6) + $m[$i++] - 0x80;
                    }

                    $entities .= '&#'.$c.';';
                }

                return $entities;
            },
            $this->line
        );

        if (-1 === $depth) {
            parent::dumpLine(0);
        }
        parent::dumpLine($depth);
    }
开发者ID:pombredanne,项目名称:ArcherSys,代码行数:47,代码来源:HtmlDumper.php


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