首页 > 代码库 > curl 学习

curl 学习

<?php 



// $username =13800138000;
// $password =123456;
// $sendto =13912345678;
// $message = "测试一个试试看!";
 
// $curlPost = ‘username=‘.urlencode($username).‘&password=‘.urlencode($password).‘&sendto=‘.urlencode($sendto).‘&message=‘.urlencode($message).‘‘;

// //1.curl 初始化
// //var_dump($ch); 资源型$ch
// $ch=curl_init(); 

// //2.设置URL和相应的选项

// curl_setopt($ch, CURLOPT_URL, "http://www.xinhedai.com");  // 抓取指定网页

// curl_setopt($ch, CURLOPT_HEADER, 0);  ////设置header

// curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);//要求结果为字符串且输出到屏幕上

// curl_setopt($ch,CURLOPT_POST, 1);//post提交方式

// curl_setopt($ch, CURLOPT_POSTFIELDS, $curlPost);


// //3.抓取URL并把它传递给浏览器
 
// $data=http://www.mamicode.com/curl_exec($ch);>

 

curl 学习