-=[ Mr. Bumblebee ]=-
_Indonesia_

Path : /usr/src/php/ext/mysqli/tests/
File Upload :
Current File : //usr/src/php/ext/mysqli/tests/mysqli_constants_categories.phpt

--TEST--
Constants exported by ext/mysqli - checking category - PHP bug not mysqli bug (check from time to time)
--SKIPIF--
<?php
require_once('skipif.inc');
require_once('skipifemb.inc');
?>
--FILE--
<?php
	$constants = get_defined_constants(true);

	foreach ($constants as $group => $consts) {
		foreach ($consts as $name => $value) {
			if (stristr($name, 'mysqli')) {
				if ('mysqli' != $group)
				printf("found constant '%s' in group '%s'. expecting group 'mysqli'\n", $name, $group);
			}
		}
	}

	print "done!";
?>
--EXPECTF--
done!

Copyright © 2017 || Recoded By Mr.Bumblebee