网站导航网学 原创论文 原创专题 网站设计 最新系统 原创论文 论文降重 发表论文 论文发表 UI设计定制 论文答辩PPT格式排版 期刊发表 论文专题
返回网学首页
网学原创论文
最新论文 推荐专题 热门论文 论文专题
当前位置: 网学 > 交易代码 > PHP源代码 > 正文

PHP源代码集锦

论文降重修改服务、格式排版等 获取论文 论文降重及排版 论文发表 相关服务

<?php
/*
函数名:GetPara

作  用:取得系统变量

简  介:习惯早期版本的朋友可能会习惯于直接通过 $para 来调用session, get, post, cookie 等类的变量,但是这在安全上会造成一定的隐患,也就是说可以通过 get 模式来欺骗系统,所以在 php 4.1.0 以后的版本中,registor_global 的默认值变成了 off ,也就是你不许通过系统数组来分类调用相关变量,但这也在一定程度上给习惯了原来模式的用户带来了不便,也使得一些早期的程序必须经过修改才可以在新的环境下运行,本函数基本上可以解决掉以上问题,同时通过分类激活避免用 get 伪装 post 等变量的问题。

效  果:是可以直接通过 $para 来调用相关变量(相当于 registor_global = on),好处是可以分类激活,避免通过 get 伪装 post 等信息!

方  法:模式一:GetPara("get","my_get_para") 取得名为 my_get_para 的 get 变量值
        模式一:GetPara("post") 声明所有 post 变量为可(像老版本php一样)直接调用的变量
        其  他:GetPara("file") ; GetPara("env") ; GetPara("server") 等...
*/
function GetPara($type = "get", $para = "") {
 //Coded By Windy_sk 20030529 v1.5
 $type = "_".strtoupper($type);
 if(phpversion() < "4.1.0") {
  if($type = "_FILES") {
   $type = "HTTP_POST".$type;
  } elseif($type = "_REQUEST") {
   return $para?false:"";
  } else {
   $type = "HTTP".$type."_VARS";
  }
  @eval("global \${$type};");
 }
 eval("\$flag = isset(\${$type});");
 if($flag) {
  eval("\$type = \${$type};");
 } else {
  return $para?false:"";
 }
 if($para) {
  return isset($type[$para])?$type[$para]:"";
 }
 while(list($key, $value) = each($type)) {
  global $key;
  $key = $value;
 }
 return true;
}


/*
函数名:substrPro

作  用:取得字符串的指定部分,且不会出现将全角字符截断的现象

简  介:本函数是 substr 针对全角字符的扩展,避免截断全角字符,同时如果 $mode = true 的话,会将全角字符看作是一个字符!

方  法:substrPro("一1二三四4五5六七八8九十0", 2, 6)        -> "1二三四"
        substrPro("一1二三四4五5六七八8九十0", 2, 6, true)  -> "1二三四4五"
        注:暂不支持参数为负值
*/
function substrPro($Modi_Str, $start, $length, $mode = false){
 //Coded By Windy_sk 20020603 v2.0
 $n = 0;
 for($i=0;$i<$start;$i++){
  if(ord(substr($Modi_Str,$i,1))>0xa0){
   if($mode){
    $start++;
    $i++;
   }
   $n++;
  }
 }
 if(!$mode)$start = $start + $n%2;
 $The_length = $start+$length;
 for($i=$start;$i<$The_length;$i++){
  if(ord(substr($Modi_Str,$i,1))>0xa0){
   $The_Str.=substr($Modi_Str,$i,2);
   $i++;
   if($mode) $The_length++;
  }else{
   $The_Str.=substr($Modi_Str,$i,1);
  }
 }
 return $The_Str;
}

/*
以下两个函数为取得程序的执行时间,并可定制精确度(最多精确到 1E-10 s)
*/
function getmicrotime() {
 if(function_exists("microtime")) {
  list($usec, $sec) = explode(" ",microtime());
  return $usec + $sec;
 } else {
  return time();
 }
}

function gettimediff($time_start, $decimal = 3) {
 $time_end = getmicrotime();
 $time = (string)($time_end - $time_start);
 $time = preg_replace("/^([\d]+.[\d]{".$decimal."})[\d]*$/","\\1",$time);
 return $time;
}


/*
函数名:ob_handle

作  用:通过ob_start("ob_handle") 来处理缓存数据,并在 flush 前对其进行加工处理。

  • 下一篇资讯: 优化-PHP代码的40条建议
  • 设为首页 | 加入收藏 | 网学首页 | 原创论文 | 计算机原创
    版权所有 网学网 [Myeducs.cn] 您电脑的分辨率是 像素
    Copyright 2008-2020 myeducs.Cn www.myeducs.Cn All Rights Reserved 湘ICP备09003080号 常年法律顾问:王律师