Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

Example analysis of indexed array and associative array in php

2025-04-03 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/01 Report--

This article mainly introduces the example analysis of indexed array and associative array in php, which has a certain reference value, and interested friends can refer to it. I hope you can learn a lot after reading this article.

Indexed array and associative array

PHP supports two kinds of arrays, one is an indexed array (indexed array) that holds only "value", and the other is an associative array (associative array) that holds a "name-value pair" (name/value).

Because javascript does not support associative arrays, json_encode () only converts indexed arrays (indexed array) to array format and associative arrays (associative array) to object format.

For example, there is now an indexed array

$arr = Array ('one',' two', 'three'); echo json_encode ($arr)

The result is:

["one", "two", "three"]

If you change it to an associative array:

$arr = Array ('1percent = >' one', '2percent = >' two', '3percent = >' three'); echo json_encode ($arr)

The result has changed:

{"1": "one", "2": "two", "3": "three"}

Notice that the data format has changed from "[]" (array) to "{}" (object).

If you need to force an indexed array into an object, you can write

Json_encode ((object) $arr)

Or

Json_encode ($arr, JSON_FORCE_OBJECT); Thank you for reading this article carefully. I hope the article "sample Analysis of indexed arrays and associative arrays in php" shared by the editor will be helpful to you. At the same time, I also hope you will support us and pay attention to the industry information channel. More related knowledge is waiting for you to learn!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report