import zend standard tests
[hiphop-php.git] / hphp / test / zend / good / ext-standard-array / bug20865.php
blob0b153d6c6bab656b61343f8b4d96b9fd62b97e83
1 <?php
2 $ta = array(1, 2, 3);
3 $ta[NULL] = "Null Value";
5 var_dump(array_key_exists(NULL, $ta));
6 ?>