TextFormatter 类
用于生成无样式纯文本输出的调试器格式化程序。
提供与 Debugger::exportVar()
的历史输出向后兼容的输出。
命名空间: Cake\Error\Debug
方法摘要
-
dump() public
将 NodeInterface 对象的树转换为纯文本字符串。
-
export() protected
将 NodeInterface 对象的树转换为纯文本字符串。
-
exportArray() protected
导出数组类型对象。
-
exportObject() protected
处理对象到字符串的转换。
-
formatWrapper() public
输出带有位置上下文的转储包装器。
方法详情
dump() ¶ public
dump(Cake\Error\Debug\NodeInterface $node): string
将 NodeInterface 对象的树转换为纯文本字符串。
参数
-
Cake\Error\Debug\NodeInterface
$node 要转储的节点树。
返回值
string
export() ¶ protected
export(Cake\Error\Debug\NodeInterface $var, int $indent): string
将 NodeInterface 对象的树转换为纯文本字符串。
参数
-
Cake\Error\Debug\NodeInterface
$var 要转储的节点树。
-
int
$indent 当前缩进级别。
返回值
string
exportArray() ¶ protected
exportArray(Cake\Error\Debug\ArrayNode $var, int $indent): string
导出数组类型对象。
参数
-
Cake\Error\Debug\ArrayNode
$var 要导出的数组。
-
int
$indent 当前缩进级别。
返回值
string
exportObject() ¶ protected
exportObject(Cake\Error\Debug\ClassNodeCake\Error\Debug\ReferenceNode $var, int $indent): string
处理对象到字符串的转换。
参数
-
Cake\Error\Debug\ClassNodeCake\Error\Debug\ReferenceNode
$var 要转换的对象。
-
int
$indent 当前缩进级别。
返回值
string
参见
\Cake\Error\Debugger::exportVar()
formatWrapper() ¶ public
formatWrapper(string $contents, array $location): string
输出带有位置上下文的转储包装器。
参数
-
string
$contents -
array
$location
返回值
string