在 PHP 中存储和检索数组
要存储数组以供以后使用 PHP 检索,您有多种选择。一种高效且灵活的方法是通过 JSON 序列化。操作方法如下:
存储数组 (store_array)
示例:
<code class="php">$arr1 = ['a' => 1, 'b' => 2, 'c' => 3, 'd' => 4, 'e' => 5]; file_put_contents("array.json", json_encode($arr1));</code>
检索数组 (restore_array)
示例:
<code class="php">$arr2 = json_decode(file_get_contents('array.json'), true);</code>
json_encode() 和 json_decode() 函数提供高效且人类可读的数组序列化,使您可以根据需要轻松存储和检索数组。
以上是如何使用 JSON 序列化在 PHP 中存储和检索数组?的详细内容。更多信息请关注PHP中文网其他相关文章!