What is PDO & why should I use it?

前端 未结 4 1695
感情败类
感情败类 2020-11-27 08:02

People keep on mentioning that I should be using PDO in my PHP when dealing with MySQL, I have never heard of this before.

What is PDO? How is it used and what are t

4条回答
  •  孤城傲影
    2020-11-27 08:19

    http://php.net/manual/en/book.pdo.php

    The PHP Data Objects (PDO) extension defines a lightweight, consistent interface for accessing databases in PHP.

    PDO provides a data-access abstraction layer, which means that, regardless of which database you're using, you use the same functions to issue queries and fetch data. PDO does not provide a database abstraction; it doesn't rewrite SQL or emulate missing features. You should use a full-blown abstraction layer if you need that facility.

提交回复
热议问题