Bạn cần chuyển tên phiên bản SQL đám mây làm tham số 'socket' cho MySQLi hàm tạo . Ví dụ
$instance_name = ":/cloudsql/projectID:google-cloud-instance";
$c = new mysqli(null, $username, $password, $database, 0, $instance_name);
nếu bạn đang sử dụng xác thực mặc định (xác thực cấp ứng dụng) thì bạn có thể chuyển quyền root và không cần mật khẩu để kết nối.
$instance_name = ":/cloudsql/projectID:google-cloud-instance";
$c = new mysqli(null, "root", "", $database, 0, $instance_name);