需要帮助在 Wordpress 中将 MySQL 转换为 MySQLI

Need help converting MySQL to MySQLI in Wordpress

MySQL 扩展现已弃用,我需要将我的 WordPress 网站转换为 MYSQLI。我是PHP的完全初学者,我真的迷路了。

我正在尝试使用转换器工具(https://github.com/philip/MySQLConverterTool) and follow these instructions https://wikis.oracle.com/display/mysql/Converting+to+MySQLi,但我无法使用该工具。

我将它上传到我的 SFTP,这是路径 例子.com/MySQLConverterTool/GUI/convert_directory.php 但每次我尝试将任何目录转换为 MySQLI 时,它都会显示 "No matching files found in the specified directory".

说明中说 "point the converter tool to the installation path of WordPress" 并且由于 WordPress 安装在我的根目录中,这是否意味着安装路径是 example.com/ ?我已经尝试过 example.com/wp-content、example.com/wp-admin 等,对于我尝试的每个目录,它都显示 "No matching files found in the specified directory".

我指向了错误的目录吗?工具应该放在不同的文件夹中吗?

我愿意尝试手动转换为 MySQLI 但我不知道从哪里开始,就像我说的我对 PHP 知之甚少。

请帮忙!

WordPress 使用自己的数据库抽象 class,called WPDB, for use in WordPress and WordPress plugins. You can also find out more about the WordPress Database API. Further I took a look at the src/wp-includes/wp-db.php 文件表明 WordPress 将在需要时回退到 MYSQLi。