วันอังคารที่ 11 ตุลาคม พ.ศ. 2554

curl proxy

<?php

$ch = curl_init("http://www.google.com");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_PROXY, "192.168.0.1");
curl_setopt($ch, CURLOPT_PROXYPORT, 808);
$x = curl_exec($ch);
curl_close($ch); 

echo $x;
?> 
ถ้าเล่นเน็ตต่อผ่าน proxy จะดึงข้อมูลจากเว็บอื่นโดยตรงไม่ได้ แต่ก็ทำได้โดยต่อผ่าน proxy เช่นเดียวกันครับ