mirror of
https://github.com/php/php-src.git
synced 2026-03-24 00:02:20 +01:00
14 lines
176 B
PHP
14 lines
176 B
PHP
--TEST--
|
|
Identical comparison of array with references
|
|
--FILE--
|
|
<?php
|
|
|
|
$foo = 42;
|
|
$array1 = [&$foo];
|
|
$array2 = [$foo];
|
|
var_dump($array1 === $array2);
|
|
|
|
?>
|
|
--EXPECT--
|
|
bool(true)
|