mirror of
https://github.com/php/php-src.git
synced 2024-12-02 22:34:55 +08:00
19 lines
181 B
PHP
19 lines
181 B
PHP
--TEST--
|
|
Double array cast
|
|
--FILE--
|
|
<?php
|
|
|
|
$array = [1, 2, $x = 3];
|
|
var_dump((array) (array) $array);
|
|
|
|
?>
|
|
--EXPECT--
|
|
array(3) {
|
|
[0]=>
|
|
int(1)
|
|
[1]=>
|
|
int(2)
|
|
[2]=>
|
|
int(3)
|
|
}
|