在\system\core\Common.php中加入自定义函数---or---在application\helpers\myfunction_helper.php中
//测试用格式化打印函数;
function p($arr){
echo '<pre>';
print_r($arr);
echo '</pre>';
}
//自定义函数操作成功提示信息函数
function success($url,$msg){
header('Content-Type:text/html; charset= utf-8');
$url= site_url($url);
echo "<script type='text/javascript'> alert('$msg'); location.href='http://wangjunmechdevise.blog.163.com/blog/$url'</script>";
die;
}
//操作失败返回信息函数
function unsuccess($msg){
header('Content-Type:text/html; charset= utf-8');
echo "<script type='text/javascript'> alert('$msg');window.history.back();</script>";
die;
}
function print_const(){
$const = get_defined_constants(TRUE);
p($const['user']);
}
网友评论