如何解决文件写入时屏幕输出显示为"ArrayArray"的问题?
<p>我有一个如下的方法。简化代码以便清晰理解:</p>
<pre class="brush:php;toolbar:false;">function somefunction($data){
$somestuff = createMyGeojson($data)
write_aa_winter_sports_points_to_file($geojson);
return $geojson;
}
function write_aa_winter_sports_points_to_file($content){
$file = "aa_winter_sports_points.geojson";
$dir = get_template_directory() .'/fs_data/aa_winter_sports_points/override_file_for_upload/';
file_put_contents($dir.$file, $content);
}</pre>
<p><code>return $geojson</code>将漂亮格式化的json显示在屏幕上,但是当我查看我的文件时,所有相应的数据看起来都是<code>ArrayArray</code>。我尝试了<code>print_r()</code>,但没有帮助。如何使用<code>file_put_contents()</code>将屏幕保存到文件中?</p>
<p>这是目前我的文件内容。</p>
<p><code>FeatureCollectionaa_winter_sports_pointsArrayArray</code></p>