file_get_contents实现数据Post数据方法
发布:smiling 来源: PHP粉丝网 添加日期:2014-08-04 14:10:58 浏览: 评论:0
file_get_contents() 函数把整个文件读入一个字符串中,和 file() 一样,不同的是 file_get_contents() 把文件读入一个字符串.
file_get_contents() 函数是用于将文件的内容读入到一个字符串中的首选方法,如果操作系统支持,还会使用内存映射技术来增强性能.
语法:file_get_contents(path,include_path,context,start,max_length)
参数 描述
path 必需。规定要读取的文件.
include_path 可选,如果也想在 include_path 中搜寻文件的话,可以将该参数设为 "1".
context 可选,规定文件句柄的环境.
context 是一套可以修改流的行为的选项,若使用 null,则忽略.
start 可选,规定在文件中开始读取的位置,该参数是 php教程 5.1 新加的.
max_length 可选,规定读取的字节数,该参数是 php 5.1 新加的.
php实例代码如下:
- <?php
- function post($url, $post = null)
- {
- $context = array();
- if (is_array($post))
- {
- ksort($post);
- $context['http'] = array
- (
- 'method' => 'post',
- 'content' => http_build_query($post, '', '&'),
- );
- }
- return file_get_contents($url, false, stream_context_create($context));
- }
- $data = array
- (
- 'name' => 'test',
- 'email' => 'test@gmail.com',
- 'submit' => 'submit',
- );
- echo post('http://localhost/5-5/request_post_result.php', $data);
- ?>
接收数据,request_post_result.php 接收经过post的数据,php代码如下:
- <?php
- echo $_post['name'];
- echo $_post['email'];
- echo $_post['submit'];
- echo "fdfd";
- ?>
实例二,代码如下:
- /**
- * 其它版本
- * 使用方法:
- * $post_string = "app=request&version=beta";
- * request_by_other('http://facebook.cn/restserver.php',$post_string);
- */
- function request_by_other($remote_server,$post_string){
- $context = array(
- 'http'=>array(
- 'method'=>'post',
- 'header'=>'content-type: application/x-www-form-urlencoded'."rn".
- 'user-agent : jimmy's post example beta'."rn".
- 'content-length: '.strlen($post_string)+8,
- 'content'=>'mypost='.$post_string)
- );
- $stream_context = stream_context_create($context);
- $data = file_get_contents($remote_server,false,$stream_context);
- return $data;
- }
Tags: file_get_contents Post数据
- 上一篇:php json函数用法
- 下一篇:PHP $ _POST函数 与$_GET函数详解
相关文章
- ·php中file_get_contents获取网页乱码解决办法(2013-12-05)
- ·php file_get_contents与curl()函数对比(2014-01-16)
- ·php file_get_contents数据采集与常用见问题解决(2014-01-16)
- ·php中常用文件操作读写函数介绍(2014-03-28)
- ·php中curl和file_get_content函数抓页面对比(2014-06-21)
- ·php中file_get_contents和curl两个函数用法(2014-08-02)
- ·file_get_contents获取远程网页内容函数(2014-09-20)
- ·php中file_get_contents代替使用curl示例(2015-04-09)
- ·PHP CURL或file_get_contents获取网页标题的代码(2015-04-10)
- ·php中file_get_contents函数高级用法(2015-04-15)
- ·PHP file_get_contents函数读取远程数据超时的解决方法(2021-05-26)
- ·php中file_get_contents()函数用法实例(2021-11-10)
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)