首页 > 代码库 > 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 学习
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。