We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
<?php use Baseapp\Library\Debug; $str = 'string'; $int = 1; $float = 2.5; $bool = TRUE; $null = NULL; $arr = array($str, $int, $float, $bool, $null); echo Debug::vars($str, $int, $float, $bool, $null); echo Debug::dump($arr, 'This is dump arr');