Following are 2 main shortcut functions available in cakephp
// similar to print_r(), but dumps to the view and // is disabled if debug isn't > 0 in config.php pr($anything); // returns the correctly internationalized plural or // singular depending on locale. __n($singular, $plural, $count, $return);
If you are working with CakePHP and haven’t figure it out yet, it’s worth looking through basics.php in the API docs.

