forwardphp
Ⅰ php中如何使用_redirect()
首先redirect不是php内置的函数。而是thinkphp框架里的
点击函数可以看到最终是:
header('Location:XXX/');的过滤
使用方法可以查看手则
//跳转到edit操作
$this->redirect('edit');
//跳转到UserAction下的edit操作
$this->redirect('User/edit');
//跳转到Admin分组默认模块默认操作
$this->redirect('Admin/');

Ⅱ 使用thinkphp 怎么实现反向代理
改自PHP Reverse Proxy PRP,修改了原版中的一些错误,支持了文件上传以及上传文件类型识别,支持指定IP,自适应SAE环境。
使用方法
?123456789 <?php $proxy=new PhpReverseProxy(); $proxy->port="8080"; $proxy->host="ww"; //$proxy->ip="1.1.1.1"; $proxy->forward_path=""; $proxy->connect(); $proxy->output(); ?>
源代码
<?php //Source Code: http //www xiumu.org/technology/php-reverse-proxy-class.shtml class PhpReverseProxy{  public $publicBaseURL;  public $outsideHeaders;  public $XRequestedWith;  public $sendPost;  public $port,$host,$ip,$content,$forward_path,$content_type,$user_agent,   $XFF,$request_method,$IMS,$cacheTime,$cookie,$authorization;  private $http_code,$lastModified,$version,$resultHeader;  const chunkSize = 10000;  function __construct(){   $this->version="PHP Reverse Proxy (PRP) 1.0";   $this->port="8080";   $this->host="127.0.0.1";   $this->ip="";   $this->content="";   $this->forward_path="";   $this->path="";   $this->content_type="";   $this->user_agent="";   $this->http_code="";   $this->XFF="";   $this->request_method="GET";   $this->IMS=false;   $this->cacheTime=72000;   $this->lastModified=gmdate("D, d M Y H:i:s",time()-72000)." GMT";   $this->cookie="";   $this->XRequestedWith = "";   $this->authorization = "";  }  function translateURL($serverName) {   $this->path=$this->forward_path.$_SERVER['REQUEST_URI'];   if(IS_SAE)    return $this->translateServer($serverName).$this->path;   if($_SERVER['QUERY_STRING']=="")    return $this->translateServer($serverName).$this->path;   else  return $this->translateServer($serverName).$this->path."?".$_SERVER['QUERY_STRING'];  }  function translateServer($serverName) {   $s = empty($_SERVER["HTTPS"]) ? ''   : ($_SERVER["HTTPS"] == "on") ? "s"   : "";   $protocol = $this->left(strtolower($_SERVER["SERVER_PROTOCOL"]), "/").$s;   if($this->port=="")     return $protocol."://".$serverName;   else   return $protocol."://".$serverName.":".$this->port;  }  function left($s1, $s2) {   return substr($s1, 0, strpos($s1, $s2));  }  function preConnect(){   $this->user_agent=$_SERVER['HTTP_USER_AGENT'];   $this->request_method=$_SERVER['REQUEST_METHOD'];   $tempCookie="";   foreach ($_COOKIE as $i => $value) {    $tempCookie=$tempCookie." $i=$_COOKIE[$i];";   }   $this->cookie=$tempCookie;   if(empty($_SERVER['HTTP_X_FORWARDED_FOR'])){    $this->XFF=$_SERVER['REMOTE_ADDR'];   } else {    $this->XFF=$_SERVER['HTTP_X_FORWARDED_FOR'].", ".$_SERVER['REMOTE_ADDR'];   }     }  function connect(){   if(empty($_SERVER['HTTP_IF_MODIFIED_SINCE'])){    $this->preConnect();    $ch=curl_init();    if($this->request_method=="POST"){     curl_setopt($ch, CURLOPT_POST,1);        $postData = array();     $filePost = false;     $uploadPath = 'uploads/';     if (IS_SAE)       $uploadPath = SAE_TMP_PATH;        if(count($_FILES)>0){       if(!is_writable($uploadPath)){         die('You cannot upload to the specified directory, please CHMOD it to 777.');       }       foreach($_FILES as $key => $fileArray){          ($fileArray["tmp_name"], $uploadPath . $fileArray["name"]);         $proxyLocation = "@" . $uploadPath . $fileArray["name"] . ";type=" . $fileArray["type"];         $postData = array($key => $proxyLocation);         $filePost = true;       }     }        foreach($_POST as $key => $value){       if(!is_array($value)){      $postData[$key] = $value;       }       else{      $postData[$key] = serialize($value);       }     }        if(!$filePost){       //$postData = http_build_query($postData);       $postString = "";       $firstLoop = true;       foreach($postData as $key => $value){       $parameterItem = urlencode($key)."=".urlencode($value);       if($firstLoop){      $postString .= $parameterItem;       }       else{      $postString .= "&".$parameterItem;       }       $firstLoop = false;        }       $postData = $postString;     }        //echo print_r($postData);        //curl_setopt($ch, CURLOPT_VERBOSE, 0);     //curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);     //curl_setopt($ch, CURLOPT_USERAGENT, "Mozilla/4.0 (compatible;)");     $this->sendPost = $postData;     //var_mp(file_exists(str_replace('@','',$postData['imgfile'])));exit;     curl_setopt($ch, CURLOPT_POSTFIELDS,$postData);     //curl_setopt($ch, CURLOPT_POSTFIELDS,file_get_contents($proxyLocation));     //curl_setopt($ch, CURLOPT_POSTFIELDS,file_get_contents("php://input"));    }       //gets rid of mulitple ? in URL    $translateURL = $this->translateURL(($this->ip)?$this->ip:$this->host);    if(substr_count($translateURL, "?")>1){      $firstPos = strpos($translateURL, "?", 0);      $secondPos = strpos($translateURL, "?", $firstPos + 1);      $translateURL = substr($translateURL, 0, $secondPos);    }       curl_setopt($ch,CURLOPT_URL,$translateURL);       $proxyHeaders = array(      "X-Forwarded-For: ".$this->XFF,      "User-Agent: ".$this->user_agent,      "Host: ".$this->host    );       if(strlen($this->XRequestedWith)>1){      $proxyHeaders[] = "X-Requested-With: ".$this->XRequestedWith;      //echo print_r($proxyHeaders);    }       curl_setopt($ch,CURLOPT_HTTPHEADER, $proxyHeaders);       if($this->cookie!=""){     curl_setopt($ch,CURLOPT_COOKIE,$this->cookie);    }    curl_setopt($ch,CURLOPT_FOLLOWLOCATION,false);     curl_setopt($ch,CURLOPT_AUTOREFERER,true);     curl_setopt($ch,CURLOPT_HEADER,true);    curl_setopt($ch,CURLOPT_RETURNTRANSFER,1);       $output=curl_exec($ch);    $info = curl_getinfo( $ch );    curl_close($ch);    $this->postConnect($info,$output);   }else {    $this->lastModified=$_SERVER['HTTP_IF_MODIFIED_SINCE'];    $this->IMS=true;   }  }  function postConnect($info,$output){   $this->content_type=$info["content_type"];   $this->http_code=$info['http_code'];   //var_mp($info);exit;   if(!empty($info['last_modified'])){    $this->lastModified=$info['last_modified'];   }   $this->resultHeader=substr($output,0,$info['header_size']);   $content = substr($output,$info['header_size']);      if($this->http_code=='200'){    $this->content=$content;   }elseif( ($this->http_code=='302' || $this->http_code=='301') && isset($info['redirect_url'])){    $redirect_url = str_replace($this->host,$_SERVER['HTTP_HOST'],$info['redirect_url']);    if (IS_SAE)      $redirect_url = str_replace('http://fetchurl.sae.sina.com.cn/','',$info['redirect_url']);    header("Location: $redirect_url");    exit;   }elseif($this->http_code=='404'){    header("HTTP/1.1 404 Not Found");    exit("HTTP/1.1 404 Not Found");   }elseif($this->http_code=='500'){    header('HTTP/1.1 500 Internal Server Error');    exit("HTTP/1.1 500 Internal Server Error");   }else{    exit("HTTP/1.1 ".$this->http_code." Internal Server Error");   }  }     function output(){   $currentTimeString=gmdate("D, d M Y H:i:s",time());   $expiredTime=gmdate("D, d M Y H:i:s",(time()+$this->cacheTime));      $doOriginalHeaders = true;   if($doOriginalHeaders){     if($this->IMS){      header("HTTP/1.1 304 Not Modified");      header("Date: Wed, $currentTimeString GMT");      header("Last-Modified: $this->lastModified");      header("Server: $this->version");     }else{         header("HTTP/1.1 200 OK");      header("Date: Wed, $currentTimeString GMT");      header("Content-Type: ".$this->content_type);      header("Last-Modified: $this->lastModified");      header("Cache-Control: max-age=$this->cacheTime");      header("Expires: $expiredTime GMT");      header("Server: $this->version");      preg_match("/Set-Cookie:[^\n]*/i",$this->resultHeader,$result);      foreach($result as $i=>$value){       header($result[$i]);      }      preg_match("/Content-Encoding:[^\n]*/i",$this->resultHeader,$result);      foreach($result as $i=>$value){       //header($result[$i]);      }      preg_match("/Transfer-Encoding:[^\n]*/i",$this->resultHeader,$result);      foreach($result as $i=>$value){       //header($result[$i]);      }      echo($this->content);      /*      if(stristr($this->content, "error")){     echo print_r($this->sendPost);      }      */    }   }   else{     $headerString = $this->resultHeader; //string      $headerArray = explode("\n", $headerString);     foreach($headerArray as $privHeader){    header($privHeader);     }        if(stristr($headerString, "Transfer-encoding: chunked")){    flush();    ob_flush();    $i = 0;    $maxLen = strlen($this->content);       while($i < $maxLen){      $endChar = $i + self::chunkSize;      if($endChar >= $maxLen){     $endChar = $maxLen - 1;      }      $chunk = substr($this->content, $i, $endChar);      $this->mp_chunk($chunk);      flush();      ob_flush();      $i = $i + $endChar;    }     }     else{     echo($this->content);     }        //echo "header: ".print_r($headerArray);     //header($this->resultHeader);   }     }        function mp_chunk($chunk) {    echo sprintf("%x\r\n", strlen($chunk));    echo $chunk;    echo "\r\n";  }        function getOutsideHeaders(){    $headers = array();    foreach ($_SERVER as $name => $value){    if (substr($name, 0, 5) == 'HTTP_') {      $name = str_replace(' ', '-', ucwords(strtolower(str_replace('_', ' ', substr($name, 5)))));      $headers[$name] = $value;    }elseif ($name == "CONTENT_TYPE") {      $headers["Content-Type"] = $value;    }elseif ($name == "CONTENT_LENGTH") {      $headers["Content-Length"] = $value;    }elseif(stristr($name, "X-Requested-With")) {      $headers["X-Requested-With"] = $value;     $this->XRequestedWith = $value;   }    }        //echo print_r($headers);       $this->outsideHeaders = $headers;    return $headers;  }     } ?>
Ⅲ php+mysql 如何优化千万级数据模糊查询加快
关于mysql处理百万级以上的数据时如何提高其查询速度的方法
最近一段时间由于工作需要,开始关注针对Mysql数据库的select查询语句的相关优化方法。
由于在参与的实际项目中发现当mysql表的数据量达到百万级时,普通SQL查询效率呈直线下降,而且如果where中的查询条件较多时,其查询速度简直无法容忍。曾经测试对一个包含400多万条记录(有索引)的表执行一条条件查询,其查询时间竟然高达40几秒,相信这么高的查询延时,任何用户都会抓狂。因此如何提高sql语句查询效率,显得十分重要。以下是网上流传比较广泛的30种SQL查询语句优化方法: 
1、应尽量避免在 where 子句中使用!=或<>操作符,否则将引擎放弃使用索引而进行全表扫描。
2、对查询进行优化,应尽量避免全表扫描,首先应考虑在 where 及 order by 涉及的列上建立索引。
3、应尽量避免在 where 子句中对字段进行 null 值判断,否则将导致引擎放弃使用索引而进行全表扫描,如:
select id from t where num is null
可以在num上设置默认值0,确保表中num列没有null值,然后这样查询:
select id from t where num=0
4、尽量避免在 where 子句中使用 or 来连接条件,否则将导致引擎放弃使用索引而进行全表扫描,如:
select id from t where num=10 or num=20
可以这样查询:
select id from t where num=10
union all
select id from t where num=20
5、下面的查询也将导致全表扫描:(不能前置百分号)
select id from t where name like ‘%c%’
若要提高效率,可以考虑全文检索。
6、in 和 not in 也要慎用,否则会导致全表扫描,如:
select id from t where num in(1,2,3)
对于连续的数值,能用 between 就不要用 in 了:
select id from t where num between 1 and 3
7、如果在 where 子句中使用参数,也会导致全表扫描。因为SQL只有在运行时才会解析局部变量,但优化程序不能将访问计划的选择推迟到运行时;它必须在编译时进行选择。然 而,如果在编译时建立访问计划,变量的值还是未知的,因而无法作为索引选择的输入项。如下面语句将进行全表扫描:
select id from t where num=@num
可以改为强制查询使用索引:
select id from t with(index(索引名)) where num=@num
8、应尽量避免在 where 子句中对字段进行表达式操作,这将导致引擎放弃使用索引而进行全表扫描。如:
select id from t where num/2=100
应改为:
select id from t where num=100*2
9、应尽量避免在where子句中对字段进行函数操作,这将导致引擎放弃使用索引而进行全表扫描。如:
select id from t where substring(name,1,3)=’abc’–name以abc开头的id
select id from t where datediff(day,createdate,’2005-11-30′)=0–’2005-11-30′生成的id
应改为:
select id from t where name like ‘abc%’
select id from t where createdate>=’2005-11-30′ and createdate<’2005-12-1′
10、不要在 where 子句中的“=”左边进行函数、算术运算或其他表达式运算,否则系统将可能无法正确使用索引。
11、在使用索引字段作为条件时,如果该索引是复合索引,那么必须使用到该索引中的第一个字段作为条件时才能保证系统使用该索引,否则该索引将不会被使 用,并且应尽可能的让字段顺序与索引顺序相一致。
12、不要写一些没有意义的查询,如需要生成一个空表结构:
select col1,col2 into #t from t where 1=0
这类代码不会返回任何结果集,但是会消耗系统资源的,应改成这样:
create table #t(…)
13、很多时候用 exists 代替 in 是一个好的选择:
select num from a where num in(select num from b)
用下面的语句替换:
select num from a where exists(select 1 from b where num=a.num)
14、并不是所有索引对查询都有效,SQL是根据表中数据来进行查询优化的,当索引列有大量数据重复时,SQL查询可能不会去利用索引,如一表中有字段 sex,male、female几乎各一半,那么即使在sex上建了索引也对查询效率起不了作用。
15、索引并不是越多越好,索引固然可以提高相应的 select 的效率,但同时也降低了 insert 及 update 的效率,因为 insert 或 update 时有可能会重建索引,所以怎样建索引需要慎重考虑,视具体情况而定。一个表的索引数最好不要超过6个,若太多则应考虑一些不常使用到的列上建的索引是否有 必要。
16.应尽可能的避免更新 clustered 索引数据列,因为 clustered 索引数据列的顺序就是表记录的物理存储顺序,一旦该列值改变将导致整个表记录的顺序的调整,会耗费相当大的资源。若应用系统需要频繁更新 clustered 索引数据列,那么需要考虑是否应将该索引建为 clustered 索引。
17、尽量使用数字型字段,若只含数值信息的字段尽量不要设计为字符型,这会降低查询和连接的性能,并会增加存储开销。这是因为引擎在处理查询和连接时会 逐个比较字符串中每一个字符,而对于数字型而言只需要比较一次就够了。
18、尽可能的使用 varchar/nvarchar 代替 char/nchar ,因为首先变长字段存储空间小,可以节省存储空间,其次对于查询来说,在一个相对较小的字段内搜索效率显然要高些。
19、任何地方都不要使用 select * from t ,用具体的字段列表代替“*”,不要返回用不到的任何字段。
20、尽量使用表变量来代替临时表。如果表变量包含大量数据,请注意索引非常有限(只有主键索引)。
21、避免频繁创建和删除临时表,以减少系统表资源的消耗。
22、临时表并不是不可使用,适当地使用它们可以使某些例程更有效,例如,当需要重复引用大型表或常用表中的某个数据集时。但是,对于一次性事件,最好使 用导出表。
23、在新建临时表时,如果一次性插入数据量很大,那么可以使用 select into 代替 create table,避免造成大量 log ,以提高速度;如果数据量不大,为了缓和系统表的资源,应先create table,然后insert。
24、如果使用到了临时表,在存储过程的最后务必将所有的临时表显式删除,先 truncate table ,然后 drop table ,这样可以避免系统表的较长时间锁定。
25、尽量避免使用游标,因为游标的效率较差,如果游标操作的数据超过1万行,那么就应该考虑改写。
26、使用基于游标的方法或临时表方法之前,应先寻找基于集的解决方案来解决问题,基于集的方法通常更有效。
27、与临时表一样,游标并不是不可使用。对小型数据集使用 FAST_FORWARD 游标通常要优于其他逐行处理方法,尤其是在必须引用几个表才能获得所需的数据时。在结果集中包括“合计”的例程通常要比使用游标执行的速度快。如果开发时 间允许,基于游标的方法和基于集的方法都可以尝试一下,看哪一种方法的效果更好。
28、在所有的存储过程和触发器的开始处设置 SET NOCOUNT ON ,在结束时设置 SET NOCOUNT OFF 。无需在执行存储过程和触发器的每个语句后向客户端发送 DONE_IN_PROC 消息。
29、尽量避免向客户端返回大数据量,若数据量过大,应该考虑相应需求是否合理。
30、尽量避免大事务操作,提高系统并发能力。
