| Current Path : /hdd/hdd21/main/php/php-7.3.1/Zend/tests/ |
| Current File : //hdd/hdd21/main/php/php-7.3.1/Zend/tests/bug67985.phpt |
--TEST-- Bug #67985 - Last used array index not copied to new array at assignment --FILE-- <?php $a = ['zero', 'one', 'two']; unset($a[2]); $b = $a; $a[] = 'three'; $b[] = 'three'; var_dump($a === $b); ?> --EXPECT-- bool(true)