使用PHP,我正在页面加载时创建一个文件。然后,此文件路径将保存到变量。使用其他JavaScript,然后修改该文件,并向其写入JSON数组。然后,我希望能够使用php检索此数组。当我添加代码时:
<?php
$filecontents = file_get_contents($arrayfiledirectory);
$decoded = json_decode($filecontents);
echo $decoded;
?>
$arrayfiledirectory
是数组文件的路径,它以页面加载开始时的方式读取文件-空白。如何将文件的当前版本读取到$filecontents
变量中?