zoukankan      html  css  js  c++  java
  • 通过file_get_contents来Post数据的实例

    通过file_get_contents来Post数据的实例
    2009-12-14 15:10

    用file_get_contents来进行POST?很妖吧。
    我也没有想到还有这种妖的东西。在向东的博客上看到这个的:http://www.xiangdong.org/blog/post/1623/

    回忆未来?别惊讶,用他的话来说是山寨D。

    原文:

    file_get_contents.php: Post数据

    <?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  
    echo $_POST['name'];  
    echo $_POST['email'];  
    echo $_POST['submit'];  
    echo "fdfd";  
    ?>   

    看一下,里面有一个特别的函数:stream_context_create,翻开手册看了一下,也没说什么呀,只是说:Creates and returns a stream context with any options supplied in options preset.

    而file_get_contents呢?它说:

    Note: Context support was added with PHP 5.0.0. For a description of contexts, refer to Reference CLX, Stream Functions.

    关于Stream Functions,手册上这么描述的。。。

    A wrapper is additional code which tells the stream how to handle specific protocols/encodings. For example, the http wrapper knows how to translate a URL into an HTTP/1.0 request for a file on a remote server. There are many wrappers built into PHP by default (See Appendix O), and additional, custom wrappers may be added either within a PHP script using stream_wrapper_register(), or directly from an extension using the API Reference in Chapter 52. Because any variety of wrapper may be added to PHP, there is no set limit on what can be done with them. To access the list of currently registered wrappers, use stream_get_wrappers().

    A stream is referenced as: scheme://target
    scheme(string) - The name of the wrapper to be used. Examples include: file, http, https, ftp, ftps, compress.zlib, compress.bz2, and php. See Appendix O for a list of PHP built-in wrappers. If no wrapper is specified, the function default is used (typically file://).

    target - Depends on the wrapper used. For filesystem related streams this is typically a path and filename of the desired file. For network related streams this is typically a hostname, often with a path appended. Again, see Appendix O for a description of targets for built-in streams.

  • 相关阅读:
    redis 内存管理与数据淘汰机制(转载)
    Memcached特性及优缺点
    二叉树深度优先遍历和广度优先遍历
    电商 秒杀系统 设计思路和实现方法(转载)
    6种负载均衡算法
    解决like '%字符串%'时索引不被使用的方法
    哪些情况下索引会失效?
    PreferenceActivity详解
    sun.misc.BASE64Encoder在Eclipse中不能直接使用的原因和解决方案
    单点登录原理与简单实现
  • 原文地址:https://www.cnblogs.com/holyes/p/7e80dd2772433fae18dba1d1898a2cdc.html
Copyright © 2011-2022 走看看