public variables ()
Returns an HTML string of debugging information about any number of variables, each wrapped in a “pre” tag.
$foo = "string"; $bar = ["key" => "value"]; $baz = new stdClass(); echo (new \Phalcon\Debug\Dump())->variables($foo, $bar, $baz);
Please login to continue.