Blogger Information
Blog 11
fans 0
comment 0
visits 6753
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
数据库的连接和增删改查操作—8月29日作业2
v1per911的博客
Original
619 people have browsed it

首先设置数据库的属性,保存为config.php

实例

<?php

$db_host = 'localhost';
$db_user = 'root';
$db_pass = 'root';
$db_name = 'php';
$db_charset = 'utf8';

// $db = [
//     'host' => 'localhost',
//     'user' => 'root',
//     'pass' => 'root',
//     'name' => 'php',
//     'charset' => 'utf8'
// ];

运行实例 »

点击 "运行实例" 按钮查看在线实例

调用config.php并连接、测试数据库:

实例

<?php

require 'mysqli/config.php';//请求导入config.php中的变量。
$mysqli = new mysqli($db_host,$db_user,$db_pass,$db_name);//创建数据库连接对象。
//mysqli(数据库地址,数据库用户名,数据库密码,默认数据库,数据库默认的端口),使用变量、数组或者字符串传入
//$mysqli = new mysqli($db['host'],$db['user'],$db['pass'],$db['name'])//使用关联数组
if($mysqli->connect_errno){//$mysqli->errno获取数据库连接错误代码,如果不为0,则判断为true。
    die ('错误代码:'.$mysqli->connect_errno.$mysqli->connect_error);//退出执行并返回错误代码和错误信息
}else{
    echo '连接成功';//表示连接成功。
} 

$mysili->set_charset($db_charset);//设置默认字符
//$mysili->set_charset($db['charset']);//使用关联数组



运行实例 »

点击 "运行实例" 按钮查看在线实例




Correction status:qualified

Teacher's comments:
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments