advanced code snippet search
Knarf on 11/15/09
echo pre vardump
03/15/11 05:45am11/15/09 08:05am
2 people have marked this snippet as a favorite
aleksanderekjlan
A function for quicly echo'ing "< pre> " around a var_dump of a variable
/* * * Propably one of the most usefull function of all times. * The only thing it does is to var_dump an variable but wraps an pre-tag around it. * */ function pre_dump(){ foreach( func_get_args() as $item ) { echo '<pre>'; var_dump($item); echo '</pre>'; }}
Report this snippet Tweet
Comment:
You need to login to post a comment.