PHP mysqli_ping() 函數(shù)
PHP mysqli_ping() 函數(shù)
檢測服務(wù)器連接:
<?php // 假定數(shù)據(jù)庫用戶名:root,密碼:123456,數(shù)據(jù)庫:RUNOOB $con=mysqli_connect("localhost","root","123456","RUNOOB"); if (mysqli_connect_errno($con)) { echo "連接 MySQL 失敗: " . mysqli_connect_error(); } // 檢測 MySQL 服務(wù)器是否可用 if (mysqli_ping($con)) { echo "連接正常!"; } else { echo "錯(cuò)誤: ". mysqli_error($con); } mysqli_close($con); ?>
定義和用法
mysqli_ping() 函數(shù)進(jìn)行一個(gè)服務(wù)器連接,如果連接已斷開則嘗試重新連接。
語法
mysqli_ping(connection);
參數(shù) | 描述 |
---|---|
connection | 必需。規(guī)定要使用的 MySQL 連接。 |
技術(shù)細(xì)節(jié)
返回值: | 如果成功則返回 TRUE,如果失敗則返回 FALSE。 |
---|---|
PHP 版本: | 5+ |

相關(guān)文章
- PHP 安裝
- PHP 語法
- PHP 變量
- PHP If Else 語句
- PHP 多維數(shù)組
- PHP array_intersect_assoc() 函數(shù)
- PHP array_product() 函數(shù)
- PHP array_rand() 函數(shù)
- PHP array_reverse() 函數(shù)
- PHP array_shift() 函數(shù)
- PHP array_sum() 函數(shù)
- PHP array_uintersect() 函數(shù)
- PHP array_values() 函數(shù)
- PHP extract() 函數(shù)
- PHP rsort() 函數(shù)
- PHP shuffle() 函數(shù)
- PHP uasort() 函數(shù)
- PHP 5 Array 函數(shù)
- PHP 5 Math 函數(shù)
- PHP 5 MySQLi 函數(shù)