PHP mysqli_query() 函數(shù)
PHP mysqli_query() 函數(shù)
執(zhí)行針對數(shù)據(jù)庫的查詢:
查詢數(shù)據(jù)庫
<?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í)行查詢
mysqli_query($con,"SELECT * FROM websites");
mysqli_query($con,"INSERT INTO websites (name, url, alexa, country)
VALUES ('百度','https://www.baidu.com/','4','CN')");
mysqli_close($con);
?>
定義和用法
mysqli_query() 函數(shù)執(zhí)行某個針對數(shù)據(jù)庫的查詢。
語法
mysqli_query(connection,query,resultmode);
參數(shù) | 描述 |
---|---|
connection | 必需。規(guī)定要使用的 MySQL 連接。 |
query | 必需,規(guī)定查詢字符串。 |
resultmode |
可選。一個常量??梢允窍铝兄抵械娜我庖粋€:
|
技術(shù)細節(jié)
返回值: | 針對成功的 SELECT、SHOW、DESCRIBE 或 EXPLAIN 查詢,將返回一個 mysqli_result 對象。針對其他成功的查詢,將返回 TRUE。如果失敗,則返回 FALSE。 |
---|---|
PHP 版本: | 5+ |
更新日志: | 在 PHP 5.3.0 中新增了異步查詢的功能。 |

相關(guān)文章
- PHP EOF(heredoc) 使用說明
- PHP 字符串
- PHP 命名空間 namespace
- PHP 面向?qū)ο?/a>
- PHP date() 函數(shù)
- PHP JSON
- PHP array_diff_ukey() 函數(shù)
- PHP array_map() 函數(shù)
- PHP array_rand() 函數(shù)
- PHP array_reduce() 函數(shù)
- PHP array_search() 函數(shù)
- PHP array_uintersect_assoc() 函數(shù)
- PHP arsort() 函數(shù)
- PHP compact() 函數(shù)
- PHP end() 函數(shù)
- PHP rsort() 函數(shù)
- PHP shuffle() 函數(shù)
- PHP usort() 函數(shù)
- PHP FTP 函數(shù)
- PHP 5 Math 函數(shù)