In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-01-18 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >
Share
Shulou(Shulou.com)06/03 Report--
This article focuses on "the types and instance usage of php arrays". Interested friends may wish to have a look at it. The method introduced in this paper is simple, fast and practical. Let's let the editor take you to learn the type and instance usage of php array.
An array is a special variable that can store multiple values in a single variable. Arrays are often used in php, and we can use array () to create a new array.
$arr=array ("foo" = > "bar", 12 = > TRUE)
Echo$arr ["foo"]; / / output: bar
Echo$arr [12]; / / output: 1
As you can see from the example, the array includes key names and values, "foo" and 12 are called key names (key), and "bar" and TRUE are corresponding values. Array entities contain both a key name and a value.
In this array, there are two types:
$arr ["foo"]: value is "bar", string type
$arr [12]: value is TRUE, Boolean
In PHP, there are three types of arrays:
1. Numerical array
Numeric arrays are arrays with numeric ID keys. The following array is an array of numbers. The key name of an array is an array.
$arr=array (0 = > 'ma',1= >' nong',2= > 'jiao',3= >' cheng')
two。 Associative array
An associative array is an array that uses the specified key that you assign to the array.
There are two ways to create associative arrays:
$age=array ("Peter" = > "35", "Ben" = > "37", "Joe" = > "43")
Or
$age=array ()
$age ['Peter'] = "35"
$age ['Ben'] = "37"
$age ['Joe'] = "43"
3. Multidimensional array
The value in one array can be another array, and the value of another array can also be an array. In this way, we can create a 2D or 3D array:
At this point, I believe you have a deeper understanding of "php array types and instance usage". You might as well do it in practice. Here is the website, more related content can enter the relevant channels to inquire, follow us, continue 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.
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
"Every 5-10 years, there's a rare product, a really special, very unusual product that's the most un
© 2024 shulou.com SLNews company. All rights reserved.