var_dump pretty code example
Example: var_dump pretty
$licks = ['one', 'two', 'three'];
echo '';
print_r($licks);
echo '
';
/*
array(3) {
[0]=>
string(3) "one"
[1]=>
string(3) "two"
[2]=>
string(5) "three"
}
*/
$licks = ['one', 'two', 'three'];
echo '';
print_r($licks);
echo '
';
/*
array(3) {
[0]=>
string(3) "one"
[1]=>
string(3) "two"
[2]=>
string(5) "three"
}
*/