Storing $_POST values in an array to save them to text file

前端 未结 2 1459
北恋
北恋 2020-12-21 03:36

I have multiple $_POST values which I want to store in an array to save to a text file. How would I go about doing this?

PHP code:



        
相关标签:
2条回答
  • 2020-12-21 03:55
    $data["name"]=$_POST["name"] 
    $data["email"]=$_POST["email"] 
    $data["msg"]=$_POST["msg"] 
    $data["origin"]=$_POST["origin"] 
    
    file_put_contents("filename.txt", serialize($data));
    

    and to bring those values back from a file:

    $data = unserialize(file_get_contents("filename.txt"));
    
    0 讨论(0)
  • 2020-12-21 04:09
    // To save
    file_put_contents("file.txt", serialize($_POST));
    
    // To get
    $array = unserialize(file_get_contents("file.txt"));
    

    More Info:

    • http://php.net/manual/en/function.serialize.php
    • http://php.net/manual/en/function.unserialize.php
    0 讨论(0)
提交回复
热议问题