zoukankan      html  css  js  c++  java
  • php://input和parse_str()使用

    php://input可以读取没有处理过的POST数据,总结起来就是,

    在用$_POST获取不到由APP或者一些接口的回调数据时,就用php://input试试

    实例

    index.php

    <form action="test.php" method="post">   
        <input type="text" name="username">   
        <input type="password" name="password">   
        <input type="submit">   
    </form>

    test.php
    <?php
        header("Content-Type:text/html;charset=utf-8");
        $file_in = file_get_contents("php://input"); 
        echo $file_in;
        echo "<br>";
        echo urldecode($file_in);

    结果 

    username=张三$password=123456

    username=张三$password=123456

    <?php
    parse_str($file_in,$myArray);
    print_r($myArray);
    ?>

    结果

    Array ( [username] => 张三[password] => 123456)

  • 相关阅读:
    5.Longest Palindrome substring
    3. Longest Substring Without Repeating Characters
    1.Two Sum
    2.Add two Numbers
    oplog
    airflow笔记
    airflow
    grpc protobuf
    modbus
    Linux 工具,一本好书 大牛的博客
  • 原文地址:https://www.cnblogs.com/jiaoaozuoziji/p/9198738.html
Copyright © 2011-2022 走看看