search
HomeBackend DevelopmentPHP TutorialPHP数据库连接mysql与mysqli对比分析_PHP

一、mysql与mysqli的概念相关

1、mysql与mysqli都是php方面的函数集,与mysql数据库关联不大。

2、在php5版本之前,一般是用php的mysql函数去驱动mysql数据库的,比如mysql_query()的函数,属于面向过程3、在php5版本以后,增加了mysqli的函数功能,某种意义上讲,它是mysql系统函数的增强版,更稳定更高效更安全,与mysql_query()对应的有mysqli_query(),属于面向对象,用对象的方式操作驱动mysql数据库

二、mysql与mysqli的区别

1、mysql是非持继连接函数,mysql每次链接都会打开一个连接的进程。

2、mysqli是永远连接函数,mysqli多次运行mysqli将使用同一连接进程,从而减少了服务器的开销。mysqli封装了诸如事务等一些高级操作,同时封装了DB操作过程中的很多可用的方法。

三、mysql与mysqli的用法

1、mysql(过程方式):

$conn = mysql_connect('localhost', 'user', 'password'); //连接mysql数据库   
 
mysql_select_db('data_base'); //选择数据库  
 
$result = mysql_query('select * from data_base');//第二个可选参数,指定打开的连接   
 
$row = mysql_fetch_row( $result ) ) //只取一行数据   
 
echo $row[0]; //输出第一个字段的值 

PS:mysqli以过程式的方式操作,有些函数必须指定资源,比如mysqli_query(资源标识,SQL语句),并且资源标识的参数是放在前面的,而mysql_query(SQL语句,'资源标识')的资源标识是可选的,默认值是上一个打开的连接或资源。

2、mysqli(对象方式):  

<pre name="code" class="php">$conn = new mysqli('localhost', 'user', 'password','data_base');   
//要使用new操作符,最后一个参数是直接指定数据库   
//假如构造时候不指定,那下一句需要$conn -> select_db('data_base')实现   
 
$result = $conn -> query( 'select * from data_base' );   
 
$row = $result -> fetch_row(); //取一行数据   
 
echo row[0]; //输出第一个字段的值 

使用new mysqli('localhost', usenamer', 'password', 'databasename');会报错,提示如下:

Fatal error: Class 'mysqli' not found in ...

一般是mysqli是没有开启的,因为mysqli类不是默认开启的,win下要改php.ini,去掉php_mysqli.dll前的;,linux下要把mysqli编译进去。

四、mysql与mysqli举例

1、mysql

<span style="font-size:14px;">$con=mysql_connect($dbhostip,$username,$userpassword); 
$db = mysql_select_db($dbdatabasename,$con); 
//执行语句 
$qres=mysql_query("SELECT id,GoodsName FROM user"); 
//提取一条数据 
$row=mysql_fetch_row($result); 
//mysql_fetch_row只能提取出查询结果的第一条记录 
//提取多条记录 
$reslist = array(); 
$i=0; 
while($row = mysql_fetch_row($res)){ 
  $reslist[$i] = $row; 
  $i++; 
 } 
mysql_close($con); 
</span> 

//mysql_fetch_row  提取的结果是没有查询中的字段名了(也就是没有键id,GoodsName,只有值)



//mysql_fetch_assoc 提取的结果有键值


//mysql_fetch_array提取的结果有键值,是前面两种的综合

在mysql_connect()、mysql_select_db()等函数之前使用@(错误控制运算符),可以忽略掉系统产生的错误信息,然后我们用die()来自定义错误信息;
对于mysql_query()函数的返回值,如果执行的语句有返回值(如SELECT、SHOW、DESCRIBE等),则返回相应数据(成功时)或FALSE(失败时);如果执行的语句没有返回值(如DELETE、DROP、INSERT、UPDATE等),则返回TRUE(成功时)或FALSE(失败时)。

2、mysqli

$db=new mysqli($dbhostip,$username,$userpassword,$dbdatabasename); 
  
if(mysqli_connect_error()){  
  
  echo 'Could not connect to database.';  
  
  exit; 
  
} 
  
$result=$db->query("SELECT id,GoodsName FROM user"); 
  
$row=$result->fetch_row(); 

五、php中mysqli用法举例

<&#63;php 
  $variable = $_POST['variable']; //Post从表单中提取变量 
  if(!$variable) //如果变量为空,输出错误信息并退出 
  { 
    echo 'You hava not entered search details.Please go back and try again.'; 
    exit; 
  } 
  if(!get_magic_quotes_gpc()) //该函数用于判断get_magic_quotes_gpc是否开启,get_magic_quotes_gpc参数是用于确定是否将从post,get,cookie过来的数据增加转义字符和从数据库出来的数据去掉转义字符 
  { 
    $variable = addlashes($variable);//在特殊文本字符前增加转义字符 
    //stripslashes()用于在去掉转义字符 
  } 
  $localhost = 'hostname';//主机名 
  $user = 'username';//用户名 
  $pwd = 'password';//密码 
  $db = 'databasename';// 
  @$link = new mysqli($localhost,$user,$pwd,$db);//连接数据库 
  if(mysqli_connect_errno())//如果数据库连接失败,输出错误信息并退出 
  { 
    echo 'Error: Coulid not connect to database. Please try again later.'; 
    exit; 
  } 
  $query = "SELECT row from table where some situation";//查询语句 
  $result = $link -> query($query);//查询并返回结果 
  $num_results = $result -> num_rows; //结果行数 
  echo "<p>Number of row found: ". $num_results ."</p>";//输出行数 
   
  for($i = 0;$i < $num_results;$i++)//循环输出每组元素 
  { 
    $row = $result -> fetch_assoc();//提取元素,一次一行,fetch_assoc()提取出的元素,有属性以及值 
    echo stripslashes($row['attributename']);//按属性(键)提取值 
    echo "<br/>"; 
  } 
  $result -> free();//释放内存 
  $link -> close();//断开数据库连接 
&#63;> 

以上就是关于PHP数据库连接mysql与mysqli的区别与用法,希望对大家的学习有所帮助。

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
php怎么把负数转为正整数php怎么把负数转为正整数Apr 19, 2022 pm 08:59 PM

php把负数转为正整数的方法:1、使用abs()函数将负数转为正数,使用intval()函数对正数取整,转为正整数,语法“intval(abs($number))”;2、利用“~”位运算符将负数取反加一,语法“~$number + 1”。

php怎么实现几秒后执行一个函数php怎么实现几秒后执行一个函数Apr 24, 2022 pm 01:12 PM

实现方法:1、使用“sleep(延迟秒数)”语句,可延迟执行函数若干秒;2、使用“time_nanosleep(延迟秒数,延迟纳秒数)”语句,可延迟执行函数若干秒和纳秒;3、使用“time_sleep_until(time()+7)”语句。

php怎么除以100保留两位小数php怎么除以100保留两位小数Apr 22, 2022 pm 06:23 PM

php除以100保留两位小数的方法:1、利用“/”运算符进行除法运算,语法“数值 / 100”;2、使用“number_format(除法结果, 2)”或“sprintf("%.2f",除法结果)”语句进行四舍五入的处理值,并保留两位小数。

php怎么根据年月日判断是一年的第几天php怎么根据年月日判断是一年的第几天Apr 22, 2022 pm 05:02 PM

判断方法:1、使用“strtotime("年-月-日")”语句将给定的年月日转换为时间戳格式;2、用“date("z",时间戳)+1”语句计算指定时间戳是一年的第几天。date()返回的天数是从0开始计算的,因此真实天数需要在此基础上加1。

php字符串有没有下标php字符串有没有下标Apr 24, 2022 am 11:49 AM

php字符串有下标。在PHP中,下标不仅可以应用于数组和对象,还可应用于字符串,利用字符串的下标和中括号“[]”可以访问指定索引位置的字符,并对该字符进行读写,语法“字符串名[下标值]”;字符串的下标值(索引值)只能是整数类型,起始值为0。

php怎么替换nbsp空格符php怎么替换nbsp空格符Apr 24, 2022 pm 02:55 PM

方法:1、用“str_replace("&nbsp;","其他字符",$str)”语句,可将nbsp符替换为其他字符;2、用“preg_replace("/(\s|\&nbsp\;||\xc2\xa0)/","其他字符",$str)”语句。

php怎么判断有没有小数点php怎么判断有没有小数点Apr 20, 2022 pm 08:12 PM

php判断有没有小数点的方法:1、使用“strpos(数字字符串,'.')”语法,如果返回小数点在字符串中第一次出现的位置,则有小数点;2、使用“strrpos(数字字符串,'.')”语句,如果返回小数点在字符串中最后一次出现的位置,则有。

php怎么读取字符串后几个字符php怎么读取字符串后几个字符Apr 22, 2022 pm 08:31 PM

在php中,可以使用substr()函数来读取字符串后几个字符,只需要将该函数的第二个参数设置为负值,第三个参数省略即可;语法为“substr(字符串,-n)”,表示读取从字符串结尾处向前数第n个字符开始,直到字符串结尾的全部字符。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor