mirror of
https://github.com/php/php-src.git
synced 2026-03-24 16:22:37 +01:00
12 lines
148 B
PHP
12 lines
148 B
PHP
--TEST--
|
|
Bug #74361: Compaction in array_rand() violates COW
|
|
--FILE--
|
|
<?php
|
|
|
|
$array = [4 => 4];
|
|
var_dump(array_rand($array));
|
|
|
|
?>
|
|
--EXPECT--
|
|
int(4)
|