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

php 查看当前页中的post及get数据

时间:2014-12-09 17:18:55      阅读:132      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   os   sp   for   on   数据   div   

    file_put_contents("log1209.html",date(‘Y-m-d H:i:s ‘)."-----<br>",FILE_APPEND);
    if ($_SERVER["REQUEST_METHOD"] == "POST") {
        file_put_contents("log1209.html",date(‘Y-m-d H:i:s ‘)."#POST<br>",FILE_APPEND);
        foreach($_POST as $key=>$value)
            file_put_contents("log1209.html",date(‘Y-m-d H:i:s ‘).$key."=>".$value."<br>",FILE_APPEND);
    }
    else{
        file_put_contents("log1209.html",date(‘Y-m-d H:i:s ‘)."#GET<br>",FILE_APPEND);
        foreach($_GET as $key=>$value)
            file_put_contents("log1209.html",date(‘Y-m-d H:i:s ‘).$key."=>".$value."<br>",FILE_APPEND);
    }
    file_put_contents("log1209.html",date(‘Y-m-d H:i:s ‘)."+++++<br>",FILE_APPEND);

 

php 查看当前页中的post及get数据

标签:style   blog   color   os   sp   for   on   数据   div   

原文地址:http://www.cnblogs.com/bloodofhero/p/4153622.html

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