-
Notifications
You must be signed in to change notification settings - Fork 0
/
asosta.php
88 lines (56 loc) · 1.18 KB
/
asosta.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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<?php
$my_array = ["movie"=>"dathe note","food"=>"apple",];
print_r ($my_array);
echo "<br><br>";
$my_array["chalk"]="duster";
print_r($my_array);
echo "<br>";
echo $my_array["food"];
echo "<br><br>";
$my_array["movie"]="naruto";
print_r($my_array);
echo"<br>";
unset($my_array["chalk"]);
print_r($my_array);
echo"<br>";
$num=[10 => "ten",1=>"one",2=>"two"];
print_r($num);
echo "<br>";
$num["j.p"]='2';
print_r($num);
echo"<br>";
echo $num[2];
echo "<br><br>";
unset($num["j.k"]);
print_r($num);
echo "<br><br>";
$varaiable = $my_array + $num;
print_r($varaiable);
echo "<br><br>";
$number_array=[2,3,7];
$string_array=["one","two","three"];
$uninon_array=$number_array+$string_array;
print($uninon_array);
echo "<br><br>";
$name = $my_array;
$my_array["food"];
echo $my_array["food"];
echo"<br>";
echo $duplicate["food"];
echo"<br><br>";
function juice($drink);
{
$drink["orange"]="red";
}
$object ={"shape"=>"circle","size"=>"small","orange"=>"orange"};
juice($object);
echo $object["orange"];
echo"<br><br>";
function juice($dodo);
{
$dodo["orange"]="red";
}
$object ={"shape"=>"circle","size"=>"small","orange"=>"orange"};
juice($object);
echo$object["orange"];
?>