Skip to content
Mariusz Łączak edited this page Jun 7, 2013 · 3 revisions

Example

<?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');
Clone this wiki locally