傳回上一次連線錯誤的錯誤描述:
<?php$con = mysqli_connect ( "localhost" , "wrong_user" , "my_password" , "my_db" ); // 檢查連線if (! $con ){ die( "連線錯誤: " .mysqli_connect_error ( );} ? >mysqli_connect_error() 函數傳回上一次連線錯誤的錯誤描述。
mysqli_connect_error() ;
傳回值: | 傳回一個描述錯誤的字串。如果沒有錯誤發生則傳回NULL。 |
---|---|
PHP 版本: | 5+ |