advanced code snippet search
andyhartleeds on 03/23/10
recursive debugging pre printr
03/23/10 10:47am03/23/10 10:27am
<?php/** * Wraps content in <pre> tags. Useful for using with arrays of data. * * @version 1.0 * @author Andrew Hart * * @param string $content The content to wrap in <pre> tags. */function pre_wrap($data){ echo '<pre>' . print_r($data, true) . '</pre>';}?>
Report this snippet Tweet
Comment:
You need to login to post a comment.