mirror of
https://github.com/php/php-src.git
synced 2025-01-02 08:54:04 +08:00
d5ddd2dbb2
For the discussion around it, see the thread on the mailing list: http://www.mail-archive.com/internals@lists.php.net/msg68245.html
12 lines
106 B
PHP
12 lines
106 B
PHP
--TEST--
|
|
059: Constant arrays
|
|
--FILE--
|
|
<?php
|
|
const C = array();
|
|
|
|
var_dump(C);
|
|
?>
|
|
--EXPECTF--
|
|
array(0) {
|
|
}
|