PHP post and get get data written in file

Source: Internet
Author: User

Sometimes post or get pass data we do not know what the form, it may be in JSON format or simply submitted to the data, this time we can write him into the text, we can see the data passed in what format.

    $val = "";    $currentDateTime  =  date (' Ymdhis ', Time ());    $currentDate =  date (' Ymd ', Time ());    $fileName = "ioslog/". $currentDate;//File name    @ $data = fopen ($fileName, ' A + ');//Add no overwrite, first determine if the file exists, and if not, the file will be created. That is, a new file record information is created every day    $val. = $currentDateTime;    if ($_post) {        $val. = ' | POST '. ' | '. $_post. " \ n ";        foreach ($_post as $key = = $value) {            $val. = ' | '. $key. ":". $value;        }    } else{        $val. = ' | GET '. ' | '. $_get. " \ n ";        foreach ($_get as $key = = $value) {                $val. = ' | '. $key. ":". $value;            }    }    $val. = "\ n";    Fwrite ($data, $val);//write    fclose ($data) in the text;


PHP post and get get data written in file

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.