summaryrefslogtreecommitdiff
path: root/ext/mysqli/tests/mysqli_thread_safe.phpt
blob: 2f6a87ba4252c71ba0acc1650f040f4d9a6ba269 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
--TEST--
mysqli_thread_safe()
--SKIPIF--
<?php
require_once('skipif.inc');
require_once('skipifemb.inc');
?>
--FILE--
<?php
	if (!is_bool($tmp = mysqli_thread_safe()))
		printf("[001] Expecting boolean/any, got %s/%s.\n", gettype($tmp), $tmp);

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