summaryrefslogtreecommitdiff
path: root/ext/standard/tests/array/data.inc
blob: b700a701a93788a36c9dafdfa92262c6ff11ceab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<?php
$tmp = pow(2,64);
$data = array( 
	'PHP',
	17=>'PHP: Hypertext Preprocessor',
	5=>'Test',
	'test'=>27,
	2147483647=>'test',
	"-2147483648"=>array('banana', 'orange'),
	'monkey',
	$tmp=>-1/3
);
?>