503f75d08b
These names don't make sense now that we run both suites the same way.
11 linhas
167 B
PHP
11 linhas
167 B
PHP
<?php
|
|
|
|
$keys = array(null, true, false, 0, 100, 0.0, 1238.93498);
|
|
|
|
foreach ($keys as $key) {
|
|
$a = array();
|
|
$a[$key] = 123;
|
|
var_dump($a);
|
|
var_dump($a[$key]);
|
|
}
|