码迷,mamicode.com
首页 > Web开发 > 详细

php-get和post请求

时间:2017-10-31 20:39:53      阅读:205      评论:0      收藏:0      [点我收藏+]

标签:api   blog   ret   http   return   tran   工作日   array   file   

1.get请求

<?php

//判断20130101是否是工作日
//工作日对应结果为 0, 休息日对应结果为 1, 节假日对应的结果为 2;
$url=‘http://www.easybots.cn/api/holiday.php?d=20130101‘;

$output= file_get_contents($url);

?>

2.post请求

<?php
$url = "http://xxxxx";
$post_data = array ("key1" => "value","key2"="value");
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
// post数据
curl_setopt($ch, CURLOPT_POST, 1);
// post的变量
curl_setopt($ch, CURLOPT_POSTFIELDS, $post_data);
$output = curl_exec($ch);
curl_close($ch);
//打印获得的数据
#print_r($output);
?>

 

php-get和post请求

标签:api   blog   ret   http   return   tran   工作日   array   file   

原文地址:http://www.cnblogs.com/hanxiaomin/p/7763494.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!