mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00
13 lines
236 B
PHP
13 lines
236 B
PHP
--TEST--
|
|
mysqli_thread_safe()
|
|
--EXTENSIONS--
|
|
mysqli
|
|
--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!
|