php-src/ext/standard/tests/array/data.inc
Sander Roobol 9b6a8d2639 Fixed the array-tests. Broke the test up into various smaller tests.
Reduced the test data because it was unmanageable.
# I hope everything is ok :)
2002-03-26 18:17:38 +00:00

14 lines
202 B
PHP

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