blob: 2991274be88b160bd11550f185e1b51c14ee7c0d (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
 | <?php
$tmp = pow(2,24);
$data = array( 
	'PHP',
	17=>'PHP: Hypertext Preprocessor',
	5=>'Test',
	'test'=>27,
	1000=>'test',
	"-1000"=>array('banana', 'orange'),
	'monkey',
	$tmp=>-1/3
);
?>
 |