This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| // error logging function that saves arrays, objects - anything. | |
| // easier to type then always typing "error_log(print_r($var,1)); | |
| function e($var, $mess=null) | |
| { | |
| error_log($mess.': '.print_r($var,1)); | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); | |
| ob_start(); | |
| /** | |
| * Template Library | |
| * | |
| * @package Template | |
| * @category Libraries | |
| * @author Mark Watson | |
| * @link http://markedup.org | |
| * |
NewerOlder