php-src/ext/mysqli/tests/mysqli_thread_safe.phpt
2021-06-11 16:27:50 +02:00

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!