php-src/ext/standard/tests/array/data.inc

14 lines
202 B
PHP
Raw Normal View History

<?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
);
?>