将对象写入文件然后将其读回以供使用

时间:2015-12-16 23:00:23

标签: php file object

我想知道是否有办法将一个对象数组写入文件,然后将其读回来使用。我尝试将json_encode对象数组写入文件并成功写入文件,但在尝试回读并json_decode对象重用它们时,由于格式错误的对象而失败 - 我相信json_encode适用于数组,我无法找到任何其他工作替代方案。

我很欣赏有关如何实现这一目标的任何建议。

2 个答案:

答案 0 :(得分:1)

您可以在对象数组上使用<script> function myFunction(species) { console.log(species); var myWindow = window.open("species_county.html", species); myWindow.document.getElementById("speciesTitle").innerHTML = species; } </script> 函数并写入文件, 然后用html()函数读回来。

答案 1 :(得分:-1)

jsondecode:

<?php  

    $array = array("Name"=>"Vineet","Profile"=>"Developer","Mobile"=>"9015501897");  

    echo json_encode($array);        
?>

输出是:

{"Name":"Vineet","Profile":"Developer","Mobile":"9015501897"}

这是上述问题的链接 - http://www.phptpoint.com/php-json-example/ 谢谢希望这会有所帮助。