--TEST-- mysqli_stmt_insert_id() --SKIPIF-- --FILE-- 50000 && (!mysqli_stmt_prepare($stmt, "ALTER TABLE test MODIFY id INT NOT NULL AUTO_INCREMENT") || !mysqli_stmt_execute($stmt))) { printf("[008] [%d] %s\n", mysqli_stmt_errno($stmt), mysqli_stmt_error($stmt)); } else if (mysqli_get_server_version($link) < 50000){ mysqli_query($link, "ALTER TABLE test MODIFY id INT NOT NULL AUTO_INCREMENT"); } if (!mysqli_stmt_prepare($stmt, "INSERT INTO test(label) VALUES ('a')") || !mysqli_stmt_execute($stmt)) { printf("[009] [%d] %s\n", mysqli_stmt_errno($stmt), mysqli_stmt_error($stmt)); } if (0 === ($tmp = mysqli_stmt_insert_id($stmt))) printf("[010] Expecting int/any non zero, got %s/%s\n", gettype($tmp), $tmp); mysqli_stmt_close($stmt); mysqli_close($link); var_dump(mysqli_stmt_insert_id($stmt)); print "done!"; ?> --CLEAN-- --EXPECTF-- Warning: mysqli_stmt_insert_id(): Couldn't fetch mysqli_stmt in %s on line %d NULL done!