您好,登錄后才能下訂單哦!
本篇文章為大家展示了PHP 中mysqli_get_host_info 函數如何使用,內容簡明扼要并且容易理解,絕對能使你眼前一亮,通過這篇文章的詳細介紹希望你能有所收獲。
mysqli_get_host_info - 返回一個表述使用的連接類型的字符串
PHP4 | PHP5 | PHP7 |
---|---|---|
不支持 | 支持 | 支持 |
mysqli_get_host_info ( mysqli $link )
返回一個字符串,描述被link 參數所表述的連接 (包括服務器主機名).
參數 | 必需的 | 描述 |
---|---|---|
link | 是 | 由 mysqli_connect() 或 mysqli_init() 返回的鏈接標識。 |
一個特征字符串,表述服務器主機名和連接類型.
$link = mysqli_connect("localhost", "my_user", "my_password", "world"); /* check connection */ if (mysqli_connect_errno()) { printf("Connect failed: %s\n", mysqli_connect_error()); exit(); } /* print host information */ printf("Host info: %s\n", mysqli_get_host_info($link)); /* close connection */ mysqli_close($link);
mysqli_get_proto_info - 返回MySQL使用的協議版本號
上述內容就是PHP 中mysqli_get_host_info 函數如何使用,你們學到知識或技能了嗎?如果還想學到更多技能或者豐富自己的知識儲備,歡迎關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。