Store print_r result into a variable as a string or text

后端 未结 3 1589
渐次进展
渐次进展 2020-12-07 15:06

If I use print_r or var_dump it displays the result on the screen, but I want this data to be stored in a variable so that I can write it to a file

相关标签:
3条回答
  • 2020-12-07 15:45
    ob_start();
    var_dump($someVar);
    $result = ob_get_clean();
    

    it works.

    0 讨论(0)
  • 2020-12-07 15:55
       $var = print_r($what, true);
    

    You must add true into print_r.

    0 讨论(0)
  • 2020-12-07 15:58

    What you do while you print or dump? Basically you send your data (result or anything) to Show it on screen. Keep your mind clear that its not saved, it is just displayed, To save the data , so a simple thing, just declare a variable and assign the data to it..

    for example you are printing some array like this..

    print_r(myArray);
    

    to save this, you just have to add an option , set Return to TRUE and assign it to a variable

    $myVariable=print_r(myArray, TRUE);
    

    if you need some more information, Follow this

    hoping this will help you understanding the concept

    0 讨论(0)
提交回复
热议问题