mirror of
https://github.com/php/php-src.git
synced 2024-12-01 13:54:10 +08:00
14 lines
142 B
PHP
14 lines
142 B
PHP
--TEST--
|
|
Square bracket array shortcut test
|
|
--FILE--
|
|
<?php
|
|
print_r([1, 2, 3]);
|
|
?>
|
|
--EXPECT--
|
|
Array
|
|
(
|
|
[0] => 1
|
|
[1] => 2
|
|
[2] => 3
|
|
)
|