mirror of
https://github.com/phabelio/PHP-Parser.git
synced 2024-11-27 04:24:43 +01:00
39 lines
1018 B
PHP
39 lines
1018 B
PHP
<?php
|
|
|
|
class NodeDumper
|
|
{
|
|
/**
|
|
* Dumps a node or array.
|
|
*
|
|
* @param array|NodeAbstract $node Node or array to dump
|
|
*
|
|
* @return string Dumped value
|
|
*/
|
|
public function dump($node) {
|
|
if ($node instanceof NodeAbstract) {
|
|
$r = $node->getType() . '(';
|
|
} elseif (is_array($node)) {
|
|
$r = 'array(';
|
|
} else {
|
|
throw new InvalidArgumentException('Can only dump nodes and arrays.');
|
|
}
|
|
|
|
foreach ($node as $key => $value) {
|
|
$r .= "\n" . ' ' . $key . ': ';
|
|
|
|
if (null === $value) {
|
|
$r .= 'null';
|
|
} elseif (false === $value) {
|
|
$r .= 'false';
|
|
} elseif (true === $value) {
|
|
$r .= 'true';
|
|
} elseif (is_scalar($value)) {
|
|
$r .= $value;
|
|
} else {
|
|
$r .= implode("\n" . ' ', explode("\n", $this->dump($value)));
|
|
}
|
|
}
|
|
|
|
return $r . "\n" . ')';
|
|
}
|
|
} |