-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathChangingRemoving.php
More file actions
40 lines (24 loc) · 786 Bytes
/
ChangingRemoving.php
File metadata and controls
40 lines (24 loc) · 786 Bytes
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
<?php
$new_arr = ["first" => "I am first!", "second" => "I am second!"];
$new_arr["third"] = "I am third!";
echo $new_arr["third"]; // Prints: I am third!
$new_arr["third"] = "I am the *NEW* third!";
echo $new_arr["third"]; // Prints: I am the *NEW* third!
$nums = ["one" => 1,"two"=> 2];
echo implode(", ", $nums); // Prints: 1, 2
unset($nums["one"]);
echo implode(", ", $nums); // Prints: 2
$my_car = [
"oil" => "black and clumpy",
"brakes" => "new",
"tires" => "old with worn treads",
"filth" => "bird droppings",
"wiper fluid" => "full",
"headlights" => "bright"
];
print_r($my_car);
// Write your code below:
$my_car["oil"] = "new and premium";
$my_car["tires"] = "new with deep treads";
unset($my_car["filth"]);
print_r($my_car);