首页 > PHP资讯 > PHP培训技术 > php 模拟发送GET 请求

php 模拟发送GET 请求

PHP培训技术

  用 file_get_contents 发送请求

$url='http://www.zixuephp.net';      
$content= file_get_contents($url);      
if($content){
  echo 'GET 请求发送成功!'; 
}

(http://www.thinksite.cn/index.php?m=content&c=index&a=lists&catid=16)

本文由欣才IT学院整理发布,未经许可,禁止转载。