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