-
-
Notifications
You must be signed in to change notification settings - Fork 138
Expand file tree
/
Copy pathsys.php
More file actions
27 lines (20 loc) · 706 Bytes
/
sys.php
File metadata and controls
27 lines (20 loc) · 706 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
<?php
echo "test echo";
echo $test, $other;
$info = array('coffee', 'brown', 'caffeine');
list($drink, $color, $power) = $info;
list($reallyReallyReallyReallyLongName, $otherReallyReallyReallyLongName, $lastOne) = $info;
print "test print";
print("parens test");
isset($test);
unset($test);
empty($test);
isset($test, $test, $test,$test, $test, $test, $test, $test, $test, $test, $test, $test);
isset($test['foo']);
isset($a['cake']['a']['b']);
isset($expected_array_got_string['some_key']);
isset($expected_array_got_string[0]);
isset($expected_array_got_string['0']);
isset($expected_array_got_string[0.5]);
isset($expected_array_got_string['0.5']);
isset($expected_array_got_string['0 Mostel']);