iliaa           Fri Dec  6 12:46:26 2002 EDT

  Added files:                 
    /php4/ext/standard/tests/array      bug20865.phpt 
  Log:
  Added test case for bug #20865.
  
  

Index: php4/ext/standard/tests/array/bug20865.phpt
+++ php4/ext/standard/tests/array/bug20865.phpt
--TEST--
Bug #20865 (array_key_exists and NULL key)
--FILE--
<?php
        $ta = array(1, 2, 3);
        $ta[NULL] = "Null Value";

        var_dump(array_key_exists(NULL, $ta));
?>
--EXPECT--
bool(true)



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to