-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdemo.php
66 lines (56 loc) · 795 Bytes
/
demo.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
<?php
if (strpos($_SERVER['HTTP_USER_AGENT'], 'MSIE') !== FALSE) {
?>
<h3>True</h3>
<?php
}else{
?>
<h3>False</h3>
<?php
}
?>
<form name="f1" action="do.php" method="post">
<input name="name" />
<input name="age" />
<input type="submit" />
</form>
<?php
$array = array(
"foo" => "bar" ,
"bar" => "foo" );
echo "-------------------"."<br/>";
$array1 = [
'foo' => 'bar',
'bar' => 'foo'
];
var_dump($array1);
?>
<br/>
<?php
var_dump($array);
?>
<?php
$array2 = array(
'foo' => 'bar',
'bar' => 'foo',
100 => -100,
-100 => 100 );
echo "<br/>";
var_dump($array2);
?>
<br/>
<?php
$array3 = array('foo','bar','hello','world');
var_dump($array3);
?>
<br/>
<?php
$arr = array(
'foor' => 'bar',
42 => 24,
"multi" => array(
'dimensional' => array(
'array' => foo
)
));
?>