CI 中自定义函数

在\system\core\Common.php中加入自定义函数---or---在application\helpers\myfunction_helper.php中

//测试用格式化打印函数;
    function p($arr){
        echo '
';
        print_r($arr);
        echo '
'; } //自定义函数操作成功提示信息函数 function success($url,$msg){ header('Content-Type:text/html; charset= utf-8'); $url= site_url($url); echo ""; die; } //操作失败返回信息函数 function unsuccess($msg){ header('Content-Type:text/html; charset= utf-8'); echo ""; die; } function print_const(){ $const = get_defined_constants(TRUE); p($const['user']); }

你可能感兴趣的:(CI 中自定义函数)