mirror of
https://github.com/php/php-src.git
synced 2024-11-27 11:53:33 +08:00
7aacc705d0
Closes GH-5958
11 lines
104 B
PHP
11 lines
104 B
PHP
--TEST--
|
|
059: Constant arrays
|
|
--FILE--
|
|
<?php
|
|
const C = array();
|
|
var_dump(C);
|
|
?>
|
|
--EXPECT--
|
|
array(0) {
|
|
}
|