方法一 使用sock函数,这个方法无须加载任何扩展就可使用
<?php
//配置代理服务器
$proxy_host = "代理服务器域名或ip"; 
$proxy_port = "代理服务器端口";
//配置欲打开的网页
$url="http://bbs.yzvod.com/index.asp";//注意要加"http://"//对路径的处理,如果前面没有/,就加一个 
function slashUrl($url) { 
  if(!ereg("^/",$url)) { 
    return "/".$url; 
  }else { 
    return $url; 
  }

//对获得内容进行处理,去掉头部信息 
function trimHeader($content){ 
$array=split("\n\r",$content,"2"); 
return trim($array["1"]); 
} function http_fopen($host,$port="80"){ 
  global $proxy_host;
  global $proxy_port;
  if(empty($proxy_host)){ 
    $conn_host = $host; 
    $conn_port = $port; 
  }else { 
    $conn_host = $proxy_host; 
    $conn_port = $proxy_port; 
  } 
  $path = slashurl($path);
  $abs_url = $host;
  //$abs_url="http://".$host.":".$port.$path; 
  $query = "GET $abs_url HTTP/1.0\r\n". 
  //"HOST:$host:$port\r\n". 
  "User-agent:PHP/class http 0.1\r\n".
  "\r\n"; 
  $fp = fsockopen($conn_host,$conn_port); 
  if(!$fp){ 
    return false; 
  }else{ 
    fputs($fp,$query); 
    while(!feof($fp)) {
      $cc .= fgets($fp);
    }
    fclose($fp);
    $content=trimHeader($cc); 
    return $content;
  }
} //前面是主机地址,第二个参数是具体的目标 
$http = http_fopen($url);
if(!$http){ 
  echo"对不起,连接代理服务器出错!"; 
  exit; 
}else {
  echo $http;
}
?>方法二 这个方法需要加载curl扩展
<?php
// create a new curl resource
$ch = curl_init();// set URL and other appropriate options
curl_setopt($ch, CURLOPT_PROXY, "代理服务器地址:端口");
curl_setopt($ch, CURLOPT_URL, "http://www.phpx.com/happy/frm4.html");
curl_setopt($ch, CURLOPT_HEADER, 0);
// grab URL and pass it to the browser
curl_exec($ch);echo curl_error ($ch);
// close curl resource, and free up system resources
curl_close($ch);
?>