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