1--TEST--
2mysqli_thread_safe()
3--EXTENSIONS--
4mysqli
5--FILE--
6<?php
7    if (!is_bool($tmp = mysqli_thread_safe()))
8        printf("[001] Expecting boolean/any, got %s/%s.\n", gettype($tmp), $tmp);
9
10    print "done!";
11?>
12--EXPECT--
13done!
14