热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

我可以用mysqli_盲目地替换所有mysql_函数吗?-CanIblindlyreplaceallmysql_functionswithmysqli_?

Ihaveusedmysql_query()throughoutmyproject;butIvejustlearnedthatmysql_wasdeprecatedas

I have used mysql_query() throughout my project; but I've just learned that mysql_ was deprecated as of PHP 5.5, has been removed in PHP 7.

我在整个项目中都使用过mysql_query();但我刚刚了解到,自PHP PHP起,mysql_已被弃用,已在PHP 7中删除。

So, I would like to know if I can replace all mysql_ functions with mysqli_ in my project blindly? For example, just replacing mysql_query() with mysqli_query(). Is there any adverse effect?

所以,我想知道我是否可以盲目地用我的项目中的mysqli_替换所有mysql_函数?例如,只需用mysqli_query()替换mysql_query()。有不良影响吗?

3 个解决方案

#1


37  

The short answer is no, the functions are not equivalent.

简短的回答是否定的,功能不相同。

The good news is there is a converter tool that will help you if you've got a lot of calls/projects to change. This will allow your scripts to work right away.

好消息是有一个转换器工具可以帮助你,如果你有很多要改变的电话/项目。这将允许您的脚本立即工作。

https://github.com/philip/MySQLConverterTool

https://github.com/philip/MySQLConverterTool

It's a forked version of the Oracle original version, and it's kosher.

它是Oracle原始版本的分叉版本,它是犹太洁食。

That said, it's not too difficult to update your code, and you might want to migrate to an object orientated methodology anyway ...

也就是说,更新代码并不太难,而且您可能希望迁移到面向对象的方法......

1) The Connection

1)连接

For all intents and purposes, you need a new connection function that saves the connection as a PHP variable, for example;

出于所有意图和目的,您需要一个新的连接函数,例如将连接保存为PHP变量;

$mysqli = new mysqli($host,$username,$password,$database);

Notice I've saved the connection to $mysqli. You can save to $db or whatever you like, but you should use this throughout your code to reference the connection.

注意我已经保存了与$ mysqli的连接。您可以保存到$ db或任何您喜欢的内容,但是您应该在整个代码中使用它来引用连接。

Remember to check for a connection error though;

请记住检查连接错误;

if ($mysqli->connect_errno) echo "Error - Failed to connect to MySQL: " . $mysqli->connect_error;

2) The Query

2)查询

Note: You should protect against SQL injection with prepared statements, which are available in MySQLi. Take a look at How can I prevent SQL injection in PHP?, but I'm just going to cover the basics here.

注意:您应该使用MySQLi中提供的预准备语句来防止SQL注入。看一下如何在PHP中阻止SQL注入?但是我将在这里介绍基础知识。

You now have to include the connection as an argument in your query, and other mysqli_ functions. In procedural code it's the first argument, in OO you write it like a class method;

您现在必须在查询中包含连接作为参数,以及其他mysqli_函数。在程序代码中它是第一个参数,在OO中你把它写成类方法;

Procedural:

程序:

$result = mysqli_query($mysqli,$sql);

OO:

OO:

$result = $mysqli->query($sql);

3) Fetch Result

3)获取结果

The fetching of the result is similar to the old mysql_ function in procedural;

获取结果类似于过程中的旧mysql_函数;

while($row = mysqli_fetch_assoc($result))

but as $result is now an object in mysqli, you can use the object function call;

但是由于$ result现在是mysqli中的一个对象,你可以使用对象函数调用;

while($row = $result->fetch_assoc())

4) Close Connection

4)关闭连接

So as before, you need to include the connection in the close function; as an argument in procedural;

和以前一样,你需要在close函数中包含连接;作为程序论证;

mysqli_close($mysqli);

and as the object that you run the function on in OO;

以及在OO中运行函数的对象;

$mysqli->close();

I would be here forever if I went through them all, but you get the idea. Take a look at the documentation for more information. Don't forget to convert any connection close, result release, or error and row counting functions you have.

如果我完全了解它们,我会永远在这里,但你明白了。请查看文档以获取更多信息。不要忘记转换任何连接关闭,结果释放,或错误和行计数功能。

The basic rule of thumb is for functions that use the database connection, you need to include it in the function now (either as the first argument in procedural, or the object you use to call the function in OO), or for a result set you can just change the function to mysqli_ or use the result set as the object.

基本的经验法则是使用数据库连接的函数,您需要将它包含在函数中(作为过程中的第一个参数,或者用于在OO中调用函数的对象),或者用于结果集您可以将函数更改为mysqli_或将结果集用作对象。

#2


5  

If you cannot convert all calls to the mysqli functions on a old project, you could install and include the library php7-mysql-shim.

如果您无法将所有调用转换为旧项目上的mysqli函数,则可以安装并包含库php7-mysql-shim。

It will try to create a transparent replacement for mysql on PHP 7 using mysqli. Obviously the performance is slower, but it's a solution to get around the problem in a couple of minutes. You may safely include the library in projects working with PHP 5.6 (it will be ignored).

它将尝试使用mysqli在PHP 7上创建一个透明的mysql替代品。显然性能较慢,但它是在几分钟内解决问题的解决方案。您可以安全地将库包含在使用PHP 5.6的项目中(它将被忽略)。

if (defined('PHP_VERSION_ID') && (PHP_VERSION_ID >= 50600)) { require_once "mysql-shim.php"; }

#3


2  

You can't. some of the functions of mysql and mysqli require different parameters. So you should know which will use the same parameters.

你不能。 mysql和mysqli的一些功能需要不同的参数。所以你应该知道哪些将使用相同的参数。


推荐阅读
  • 本文详细介绍了Oracle RMAN中的增量备份机制,重点解析了差异增量和累积增量备份的概念及其在不同Oracle版本中的实现。通过对比两种备份方式的特点,帮助读者选择合适的备份策略。 ... [详细]
  • 本文探讨了Java中有效停止线程的多种方法,包括使用标志位、中断机制及处理阻塞I/O操作等,旨在帮助开发者避免使用已废弃的危险方法,确保线程安全和程序稳定性。 ... [详细]
  • 构建Python自助式数据查询系统
    在现代数据密集型环境中,业务团队频繁需要从数据库中提取特定信息。为了提高效率并减少IT部门的工作负担,本文探讨了一种利用Python语言实现的自助数据查询工具的设计与实现。 ... [详细]
  • 深入解析mt_allocator内存分配器(二):多线程与单线程场景下的实现
    本文详细介绍了mt_allocator内存分配器在多线程和单线程环境下的实现机制。该分配器以2的幂次方字节为单位分配内存,支持灵活的配置和高效的性能。文章分为内存池特性描述、内存池实现、单线程内存池实现、内存池策略类实现及多线程内存池实现等部分,深入探讨了内存池的初始化、内存分配与回收的具体实现。 ... [详细]
  • 本文详细介绍了如何在本地环境中安装配置Frida及其服务器组件,以及如何通过Frida进行基本的应用程序动态分析,包括获取应用版本和加载的类信息。 ... [详细]
  • 本文详细介绍了Objective-C中的面向对象编程概念,重点探讨了类的定义、方法的实现、对象的创建与销毁等内容,旨在帮助开发者更好地理解和应用Objective-C的面向对象特性。 ... [详细]
  • 本文深入探讨了领域驱动设计(DDD)中的聚合概念及其在事件溯源架构中的应用。聚合是一组紧密相关的类,这些类作为一个整体运作,形成一个有明确边界的组织。只有通过聚合根才能与聚合内的对象进行交互。 ... [详细]
  • Python Selenium WebDriver 浏览器驱动详解与实践
    本文详细介绍了如何使用Python结合Selenium和unittest构建自动化测试框架,重点解析了WebDriver浏览器驱动的配置与使用方法,涵盖Chrome、Firefox、IE/Edge等主流浏览器。 ... [详细]
  • 本文档旨在提供C语言的基础知识概述,涵盖常量、变量、数据类型、控制结构及函数定义等内容。特别强调了常量的不同类型及其在程序中的应用,以及如何正确声明和使用函数。 ... [详细]
  • 本文详细介绍了PHP中的几种超全局变量,包括$GLOBAL、$_SERVER、$_POST、$_GET等,并探讨了AJAX的工作原理及其优缺点。通过具体示例,帮助读者更好地理解和应用这些技术。 ... [详细]
  • This article explores the process of integrating Promises into Ext Ajax calls for a more functional programming approach, along with detailed steps on testing these asynchronous operations. ... [详细]
  • 在AngularJS中,有时需要在表单内包含某些控件,但又不希望这些控件导致表单变为脏状态。例如,当用户对表单进行修改后,表单的$dirty属性将变为true,触发保存对话框。然而,对于一些导航或辅助功能控件,我们可能并不希望它们触发这种行为。 ... [详细]
  • 本文详细探讨了Java中HashMap类的hash()方法的工作原理及其重要性,特别是在JDK 7版本中的实现。 ... [详细]
  • 优雅地记录API调用时长
    本文旨在探讨如何高效且优雅地记录API接口的调用时长,通过实际案例和代码示例,帮助开发者理解并实施这一技术,提高系统的可观测性和调试效率。 ... [详细]
  • 深入解析 RuntimeClass 及多容器运行时应用
    本文旨在探讨RuntimeClass的起源、功能及其在多容器运行时环境中的实际应用。通过详细的案例分析,帮助读者理解如何在Kubernetes集群中高效管理不同类型的容器运行时。 ... [详细]
author-avatar
博菡
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有