key_exists_basic.phpt 450 B

123456789101112131415
  1. --TEST--
  2. Test function key_exists() by calling it with its expected arguments
  3. --CREDITS--
  4. Francesco Fullone ff@ideato.it
  5. #PHPTestFest Cesena Italia on 2009-06-20
  6. --FILE--
  7. <?php
  8. echo "*** test key_exists() by calling it with its expected arguments ***\n";
  9. $a = array('bar' => 1);
  10. var_dump(key_exists('bar', $a));
  11. var_dump(key_exists('foo', $a));
  12. --EXPECTF--
  13. *** test key_exists() by calling it with its expected arguments ***
  14. bool(true)
  15. bool(false)