| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305 |
- <?php
- /**
- *****************************************************************
- * 联系QQ: 290802026 *
- * 版 本: V2.0 *
- * 开发者:雨中磐石工作室 *
- * 邮 箱: admin@rockoa.com *
- * 网 址: http://www.rockoa.com/ *
- * 说 明: 定义常用的方法 *
- * 备 注: 未经允许不得商业出售,代码欢迎参考纠正 *
- *****************************************************************
- */
- /**
- * m 读取数据模型,操作数据库的
- * $name 表名/文件名
- */
- function m($name)
- {
- $cls = NULL;
- $pats = $nac = '';
- $nas = $name;
- $asq = explode(':', $nas);
- if(count($asq)>1){
- $nas = $asq[1];
- $nac = $asq[0];
- $pats = $nac.'/';
- $_pats = ''.ROOT_PATH.'/'.PROJECT.'/model/'.$nac.'/'.$nac.'.php';
- if(file_exists($_pats)){
- include_once($_pats);
- $class = ''.$nac.'Model';
- $cls = new $class($nas);
- }
- }
- $class = ''.$nas.'ClassModel';
- $path = ''.ROOT_PATH.'/'.PROJECT.'/model/'.$pats.''.$nas.'Model.php';
- if(file_exists($path)){
- include_once($path);
- if($nac!='')$class= $nac.'_'.$class;
- $cls = new $class($nas);
- }
- if($cls==NULL)$cls = new sModel($nas);
- return $cls;
- }
- /**
- * 引入插件
- * $name 插件名称
- * $inbo 是否初始化
- * $param1,2,参数
- */
- function c($name, $inbo=true, $param1='', $param2='')
- {
- $class = ''.$name.'Chajian';
- $path = ''.ROOT_PATH.'/include/chajian/'.$class.'.php';
- $cls = NULL;
- if(file_exists($path)){
- include_once($path);
- if($inbo)$cls = new $class($param1, $param2);
- }
- return $cls;
- }
- /**
- * 引入class文件
- */
- function import($name, $inbo=true)
- {
- $class = ''.$name.'Class';
- $path = ''.ROOT_PATH.'/include/class/'.$class.'.php';
- $cls = NULL;
- if(file_exists($path)){
- include_once($path);
- if($inbo){
- $cls = new $class();
- }
- }
- return $cls;
- }
- /**
- * 读取配置
- */
- function getconfig($key, $dev='')
- {
- $a = array();
- if(isset($GLOBALS['config']))$a = $GLOBALS['config'];
- $s = '';
- if(isset($a[$key]))$s = $a[$key];
- if($s==='')$s = $dev;
- return $s;
- }
- /**
- * 判断变量是否为空
- * @return boolean
- */
- function isempt($str)
- {
- $bool=false;
- if( ($str==''||$str==NULL||empty($str)) && (!is_numeric($str)) )$bool=true;
- return $bool;
- }
- /**
- * 判断变量是否包含在另一变量里面
- * @return boolean
- */
- function contain($str,$a)
- {
- $bool=false;
- if(!isempt($a) && !isempt($str)){
- $ad=strpos($str,$a);
- if($ad>0||!is_bool($ad))$bool=true;
- }
- return $bool;
- }
- /**
- * 获取请求的头
- * @return string/array
- */
- function getheader($key='')
- {
- $arr = array();
- if(function_exists('getallheaders'))$arr = getallheaders();
- if($key=='')return $arr;
- return arrvalue($arr, $key);
- }
- /**
- * 是否ajax请求
- * @return boolean
- */
- function isajax()
- {
- if(strtolower(getheader('X-Requested-With'))=='xmlhttprequest'){
- return true;
- }else{
- return false;
- };
- }
- function backmsg($msg='', $demsg='处理成功', $da=array())
- {
- $code = 201;
- if($msg == ''){
- $msg = $demsg;
- $code= 200;
- }
- showreturn($da, $msg, $code);
- }
- /**
- * 返回错误信息
- */
- function returnerror($msg='', $code=201, $carr=array())
- {
- $carr['msg'] = $msg;
- $carr['code'] = $code;
- $carr['success'] = false;
- $carr['data'] = '';
- return $carr;
- }
- /**
- * 返回正确信息
- */
- function returnsuccess($data=array(),$msg='')
- {
- $carr['msg'] = $msg;
- $carr['code'] = 200;
- $carr['success'] = true;
- $carr['data'] = $data;
- return $carr;
- }
- function showreturn($arr='', $msg='', $code=200)
- {
- $callback = @$_GET['callback'];
- $success = true;
- if($code != 200)$success = false;
- $result = json_encode(array(
- 'code' => $code,
- 'msg' => $msg,
- 'data' => $arr,
- 'success'=> $success
- ));
- if(!isempt($callback)){
- echo ''.$callback.'('.$result.')';
- }else{
- echo $result;
- }
- exit();
- }
- /**
- * 错误处理
- */
- function rockerror($errno, $errstr,$err_file = '', $err_line = 0){
- $str = "File:".$err_file." Line:[$err_line] Error: [$errno] $errstr";
- echo $str;exit();
- }
- /**
- * 在数组里读取变量
- * @return value
- */
- function arrvalue($arr, $k, $dev='')
- {
- $val = $dev;
- if(isset($arr[$k]))$val= $arr[$k];
- return $val;
- }
- /**
- * 在对象里读取变量
- * @return value
- */
- function objvalue($arr, $k, $dev='')
- {
- $val = $dev;
- if(isset($arr->$k))$val= $arr->$k;
- return $val;
- }
- /**
- * 过滤字符串的空格
- */
- function trimstr($str)
- {
- return trim(str_replace(' ','',$str));
- }
- /**
- * getallheaders不存在时
- */
- if (!function_exists('getallheaders')){
- function getallheaders(){
- $headers = array();
- foreach ($_SERVER as $name => $value) {
- if(substr($name, 0, 5) == 'HTTP_') {
- $headers[str_replace(' ', '-', ucwords(strtolower(str_replace('_', ' ', substr($name, 5)))))] = $value;
- }
- }
- return $headers;
- }
- }
- function getparams($key, $dev='')
- {
- if(PHP_SAPI != 'cli'){
- return arrvalue($_GET,$key,$dev);
- }
- $arr = arrvalue($GLOBALS, 'argv');
- $sss = '';
- if($arr)for($i=2;$i<count($arr);$i++){
- $str = $arr[$i];
- if(!isempt($str)){
- $stra = explode('=', $str);
- if($stra[0]=='-'.$key.''){
- $sss = arrvalue($stra, 1);
- break;
- }
- }
- }
- if(isempt($sss))$sss = $dev;
- return $sss;
- }
- /**
- * 多语言返回
- */
- function lang($str,$lx='')
- {
- if(!$str)return $str;
- $da = arrvalue($GLOBALS,'langdata');
- if(!$da || !isset($da['xuhao']))return $str;
- $xuhao = $da['xuhao'];
- $key = 'data'.$lx.'';
- if(!isset($da[$key])){
- $path = ''.ROOT_PATH.'/include/langlocal/langphp/lang'.$lx.'.php';
- $data = array();
- if(file_exists($path))$data = require($path);
- $GLOBALS['langdata'][$key] = $data;
- }else{
- $data = $da[$key];
- }
- if(!isset($data[$str]))return $str;
- $nstr = arrvalue($data[$str], $xuhao);
- if(!$nstr)$nstr = $str;
- return $nstr;
- }
- /**
- * 为空替换为''
- */
- function repempt($str,$dev='')
- {
- $s = $str;
- if($s===null)$s=$dev;
- return $s;
- }
|