tags around * the output of given array. Similar to debug(). * * @see debug() * @param array $var Variable to print out * @param boolean $showFrom If set to true, the method prints from where the function was called */ function pr($var) { if (Configure::read() > 0) { echo "
";
                        print_r($var);
                        echo "
"; } } /* vim: set expandtab softtabstop=4 tabstop=4 shiftwidth=4: */