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);

 

相关文章:

  • 2022-02-05
  • 2021-08-24
  • 2021-06-05
  • 2022-03-03
  • 2021-07-18
  • 2022-12-23
  • 2021-08-13
  • 2021-06-21
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2021-11-24
  • 2022-12-23
  • 2022-12-23
  • 2021-06-13
  • 2022-12-23
相关资源
相似解决方案