标签:
$data = array( ‘foo‘=>‘bar‘, ‘baz‘=>‘boom‘, ‘site‘=>‘www.lai18.com‘, ‘name‘=>‘lai18‘); $data = http_build_query($data); //$postdata = http_build_query($data); $options = array( ‘http‘ => array( ‘method‘ => ‘POST‘, ‘header‘ => ‘Content-type:application/x-www-form-urlencoded‘, ‘content‘ => $data //‘timeout‘ => 60 * 60 // 超时时间(单位:s) ) ); $url = "http://www.lai18.net/"; $context = stream_context_create($options); $result = file_get_contents($url, false, $context); echo $result;
$data = $_POST; echo ‘<pre>‘; print_r( $data ); echo ‘</pre>‘;
Array ( [foo] => bar [baz] => boom [site] => www.lai18.com [name] => lai18 )
$opts = array( ‘http‘=>array( ‘method‘=>"GET", ‘timeout‘=>60, ) ); //创建数据流上下文 $context = stream_context_create($opts); $html =file_get_contents(‘http://www.lai18.com‘, false, $context); //fopen输出文件指针处的所有剩余数据: //fpassthru($fp); //fclose()前使用
1PHP函数补完:get_magic_quotes_gpc()
19PHP函数补完:import_request_variables()
20PHP函数补完:ImageCopyResamples()
21PHP函数补完:移除HTML标签strip_tags()
24PHP函数补完:判断变量是否为数字is_numeric()
25PHP函数补完:http_build_query()构造URL字符串
26PHP实用函数手册:stream_context_create()模拟POST/GET
31php计划任务之ignore_user_abort函数实现方法
33PHP实用函数-array_change_key_case()将数组的键转换大小写
34PHP实用函数-function_exists()检测函数是否已定义
35PHP实用函数-array_intersect()计算两个或多个数组的交集
36PHP实用函数-array_diff()计算数组间的差集
38PHP实用函数-extract()将数组转换成对应键值对变量
39PHP实用函数-array_count_values()统计数组中元素出现的次数
40PHP实用函数-getopt()从命令行参数列表中获取选项
PHP实用函数手册:stream_context_create()模拟POST/GET
标签:
原文地址:http://www.cnblogs.com/ruthon/p/4553715.html