Arquivos
hhvm/hphp/test/slow/comparisons/refnull.php
T
mwilliams dde3c9e8d8 Fix tvSame for null-by-reference values
The dereference was too late.
2013-06-19 09:57:02 -07:00

6 linhas
73 B
PHP

<?php
$a = array(null);
$b =&$a[0];
var_dump(in_array(null, $a, true));