jquery で JSON.stringify(pageSettings) を使用して、配列を php に ajax し、ファイルを保存します。ファイルの内容:
{"MidHeight":367,"BotTop":502}
json_decode を使用して、php の配列にロードし直します。
$pageSettings=json_decode(file_get_contents($path.$file);
print_r($pageSettings,true) 結果は次のとおりです。
stdClass Object
(
[MidHeight] => 276
[BotTop] => 411
)
しかし、私がそれから読み込もうとすると:
$pageSettings["MidHeight"]
私は得る:
PHP Fatal error: Cannot use object of type stdClass as array.