Prado\PradoBase::varDump PHP Метод

varDump() публичный статический Метод

This method achieves the similar functionality as var_dump and print_r but is more robust when handling complex objects such as PRADO controls.
public static varDump ( $var, $depth = 10, $highlight = false ) : string
Результат string the string representation of the variable
    public static function varDump($var, $depth = 10, $highlight = false)
    {
        return TVarDumper::dump($var, $depth, $highlight);
    }