-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patharray.php
47 lines (36 loc) · 826 Bytes
/
array.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<?php
// array 3 types
// 1. indexed array.
// 2. associative array.
// 3. multi dimenstion array.
// ---> index array [], array()
$data_types = array('number','integer','string','double','float'); //index array
// print_r($data_types[4]);
// ----> associative array
$data_type = [
'string' => 'Deepak',
'integer' => 24,
'float' => 6.1,
"boolen" => true
];
// print_r($data_type['float']);
// foreach($data_type as $key => $value){
// }
// ----> Multi dim array
$details = [
'name' => 'Deepak',
'age' => 24,
'height' => 6.1,
"is_good" => true,
"address" => [
'city' => 'delhi',
'area' => 'cp',
'pincode' => 110057,
'flat_details' => [
'xyz',
'abc'
]
]
];
print_r($details['address']["flat_details"][1]);
?>