码迷,mamicode.com
首页 > 其他好文 > 详细

伪静态转换

时间:2015-03-07 18:41:20      阅读:123      评论:0      收藏:0      [点我收藏+]

标签:

Title:伪静态转换  --2013-05-24 08:55

<?php  
    //test.php?id=13 伪静态转换  
    //xxxx-.$id.html  
    $id=$_GET["id"];    
    $id=str_replace(" ","%20",$id);   
    $id=str_replace("=","%3D",$id);  
    $url ="http://www.xxxxxx.net/Search-".$id."--.html";  
    $ch = curl_init();  
    curl_setopt($ch, CURLOPT_URL, "$url");  
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);   
    curl_setopt($ch, CURLOPT_HEADER, 0);    
    $output = curl_exec($ch);   
    curl_close($ch);   
    //echo $url."\r\n";  
    print_r($output);  
?>

  

伪静态转换

标签:

原文地址:http://www.cnblogs.com/TeaIng-Index/p/4320683.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!