Neos\Flow\Log\Backend\AbstractBackend::getFormattedVarDump PHP Метод

getFormattedVarDump() защищенный Метод

..) for logfile output
protected getFormattedVarDump ( mixed $var, integer $spaces = 4 ) : string
$var mixed The variable
$spaces integer Number of spaces to add before a line
Результат string text output
    protected function getFormattedVarDump($var, $spaces = 4)
    {
        if ($spaces > 100) {
            return null;
        }
        $output = '';
        if (is_array($var)) {
            foreach ($var as $k => $v) {
                if (is_array($v)) {
                    $output .= str_repeat(' ', $spaces) . $k . ' => array (' . PHP_EOL . $this->getFormattedVarDump($v, $spaces + 3) . str_repeat(' ', $spaces) . ')' . PHP_EOL;
                } else {
                    if (is_object($v)) {
                        $output .= str_repeat(' ', $spaces) . $k . ' => object: ' . get_class($v) . PHP_EOL;
                    } else {
                        $output .= str_repeat(' ', $spaces) . $k . ' => ' . ($v === null ? '␀' : $v) . PHP_EOL;
                    }
                }
            }
        } else {
            if (is_object($var)) {
                $output .= str_repeat(' ', $spaces) . ' [ OBJECT: ' . strtoupper(get_class($var)) . ' ]:' . PHP_EOL;
                if (is_array(get_object_vars($var))) {
                    foreach (get_object_vars($var) as $objVarName => $objVarValue) {
                        if (is_array($objVarValue) || is_object($objVarValue)) {
                            $output .= str_repeat(' ', $spaces) . $objVarName . ' => ' . PHP_EOL;
                            $output .= $this->getFormattedVarDump($objVarValue, $spaces + 3);
                        } else {
                            $output .= str_repeat(' ', $spaces) . $objVarName . ' => ' . ($objVarValue === null ? '␀' : $objVarValue) . PHP_EOL;
                        }
                    }
                }
                $output .= PHP_EOL;
            } else {
                $output .= str_repeat(' ', $spaces) . '=> ' . ($var === null ? '␀' : $var) . PHP_EOL;
            }
        }
        return $output;
    }