PHP mysqli_info() 函數(shù)
PHP mysqli_info() 函數(shù)
返回有關(guān)最近執(zhí)行查詢的信息:
<?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(); } // 執(zhí)行查詢 $sql1="CREATE TABLE testwebsites LIKE websites"; mysqli_query($con,$sql1); $sql2="INSERT INTO testwebsites SELECT * FROM websites ORDER BY alexa LIMIT 3"; mysqli_query($con,$sql2); // 輸出最近查詢的信息 echo mysqli_info($con); mysqli_close($con); ?>
定義和用法
mysqli_info() 函數(shù)返回有關(guān)最近執(zhí)行查詢的信息。
該函數(shù)作用于下列查詢類型:
- INSERT INTO...SELECT...
- INSERT INTO...VALUES (...),(...),(...)
- LOAD DATA INFILE ...
- ALTER TABLE ...
- UPDATE ...
語法
mysqli_info(connection);
參數(shù) | 描述 |
---|---|
connection | 必需。規(guī)定要使用的 MySQL 連接。 |
技術(shù)細(xì)節(jié)
返回值: | 返回一個字符串,包含有關(guān)最近執(zhí)行查詢的額外信息。 |
---|---|
PHP 版本: | 5+ |

相關(guān)文章
- PHP 字符串
- PHP 面向?qū)ο?/a>
- PHP $_POST 變量
- PHP 文件上傳
- PHP 高級過濾器
- PHP array_change_key_case() 函數(shù)
- PHP array_count_values() 函數(shù)
- PHP array_diff_assoc() 函數(shù)
- PHP array_flip() 函數(shù)
- PHP array_multisort() 函數(shù)
- PHP array_reduce() 函數(shù)
- PHP array_replace() 函數(shù)
- PHP array_replace_recursive() 函數(shù)
- PHP array_walk() 函數(shù)
- PHP array_walk_recursive() 函數(shù)
- PHP asort() 函數(shù)
- PHP uksort() 函數(shù)
- PHP 5 Array 函數(shù)
- PHP 5 Date/Time 函數(shù)
- PHP Error 和 Logging 函數(shù)