mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00
13 lines
213 B
PHP
13 lines
213 B
PHP
<?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
|
|
);
|
|
?>
|