PHP Velho Oeste 2024

MySQL 用 PHP ドライバの概要

はじめに

PHP から MySQL データベースにアクセスするための API は複数あります。 mysqli あるいは PDO_MySQL が利用できます。

このページでは、これらの API についての説明に登場する 用語 について解説したり、 いったいどの API を使えばいいのか を説明したり、選んだ API と組み合わせる MySQL の ライブラリ について説明したりします。

add a note add a note

User Contributed Notes 1 note

up
-23
info at talkforweb dot com dot au
4 years ago
MySQL deprecated in PHP 5.5.0, and removed in PHP 7.0.0. For a large and old application, this is difficult to search and replace each function.

We can use MySQL functions by creating a wrapper function for each below is running code. <a href="https://www.talkforweb.com.au/php/how-to-use-mysql-in-php-7-version">Click here</a>
To Top