This article mainly introduces the detailed explanation of the PDO class in PHP5. Interested friends can refer to it. I hope it will be helpful to everyone.
■What is PDO? The POD (PHP Data Object) extension was added in PHP5. PDO will be used by default to connect to the database in PHP6. All non-PDO extensions will be removed from the extension in PHP6. This extension provides PHP built-in class PDO to access the database. Different databases use the same method name to solve the problem of inconsistent database connections. I configured it for development under windows. ■The goal of PDO
Provide a lightweight, clear, and convenient API
Unify the common features of various different RDBMS libraries, but does not exclude more advanced features.
Provides an optional greater degree of abstraction/compatibility via PHP scripts.
■PDO features:
Performance. PDO learned from the beginning about the successes and failures of scaling existing databases. Because PDO's code is brand new, we have the opportunity to redesign performance from the ground up to take advantage of PHP 5's latest features.
ability. PDO is designed to provide common database functionality as a foundation while providing easy access to the unique features of an RDBMS.
Simple. PDO is designed to make working with databases easy for you. The API doesn't force its way into your code and makes it clear what each function call does.
Extensible at runtime. The PDO extension is modular, enabling you to load drivers for your database backend at runtime without having to recompile or reinstall the entire PHP program. For example, the PDO_OCI extension implements the oracle database API instead of the PDO extension. There are also drivers for MySQL, PostgreSQL, ODBC, and Firebird, with more in development. [separator]
■Installing PDO
Here is the PDO extension for development under WINDOWS. If you want to install and configure it under Linux, please look elsewhere.
Version requirements: php5.1 and later versions are already included in the package; php5.0.x needs to be downloaded from pecl.php.net and placed in your extension library, which is the ext of the folder where PHP is located. folder; the manual says that versions before 5.0 cannot run PDO extensions. Configuration:
Modify your php.ini configuration file so that it supports pdo. (If you don’t understand php.ini, first make it clear that you need to modify the php.ini displayed when calling your phpinfo() function. ) Remove the semicolon in front of extension=php_pdo.dll. The semicolon is the php configuration file comment symbol. This extension is necessary. Further down there are
;extension=php_pdo.dll
;extension=php_pdo_firebird.dll
;extension=php_pdo_informix.dll
;extension=php_pdo_mssql.dll
;extension=php_pdo_mysql.dll
;extension=php_pdo_oci.dll
;extension=php_pdo_oci8.dll
;extension=php_pdo_odbc.dll
;extension=php_pdo_pgsql.dll
;extension=php_pdo_sqlite.dll corresponding to each extension The databases are:
Driver name Supported databases
PDO_DBLIB FreeTDS / Microsoft SQL Server / Sybase
PDO_FIREBIRD Firebird/Interbase 6
PDO_INFORMIX IBM Informix Dynamic Server
PDO_MYSQL MySQL 3.x/4.x
PDO_OCI Oracle Call Interface
PDO_ODBC ODBC v3 (IBM DB2, unixODBC and win32 ODBC)
PDO_PGSQL PostgreSQL
PDO_SQLITE SQLite 3 and SQLite 2
Which database you want to use, just add the corresponding extension Just remove the comment symbol ";" in front of it.
■Using PDO
I assume here that you have installed mysql. If not, please find a way to install it first. Mine is mysql5.0.22, and the passerby in the dark uses MySQL 4.0.26. Also available.
★Database connection:
We use the following example to analyze PDO connection to the database,
$dbms='mysql'; //Database type oracle Using ODI, for developers, if they use different databases, they only need to change this, and there is no need to remember so many functions.
$host='localhost'; //Database host name
$dbName='test' ; //Database used
$user='root'; //Database connection username
$pass=''; //Corresponding password
$dsn="$dbms:host=$host ;dbname=$dbName";
//
try {
$dbh = new PDO($dsn, $user, $pass); //Initializing a PDO object means creating a database Connection object $dbh
echo "Connection successful
";
/*You can also perform a search operation
foreach ($dbh->query('Select * from FOO') as $row) {
print_r($row);
} catch (PDOException $e) {
die ("Error!: " . $e->getMessage() . "
");
}
// By default, this is not a long connection. If you need a long connection to the database, you need to add a parameter at the end: array(PDO::ATTR_PERSISTENT => true), which becomes like this:
$db = new PDO($dsn, $user, $pass , array(PDO::ATTR_PERSISTENT => true));
?>
★Database query:
We have already conducted a query above, we can still Use the following query:
$db->setAttribute(PDO::ATTR_CASE, PDO::CASE_UPPER); //Set attributes
$rs = $db->query("Select * FROM foo");
$rs-> ;setFetchMode(PDO::FETCH_ASSOC);
$result_arr = $rs->fetchAll();
print_r($result_arr);
?>
Because of the above Use the setAttribute() method, put those two parameters, and force the field name to uppercase. The following lists the parameters of PDO::setAttribute(): PDO::ATTR_CASE: Forces the column name to become a format, the details are as follows (second parameter):
PDO::CASE_LOWER: Forces the column name The name is lowercase.
PDO::CASE_NATURAL: The column name is in the original way
PDO::CASE_UPPER: The column name is forced to be uppercase.
PDO::ATTR_ERRMODE: Error Tip.
PDO::ERRMODE_SILENT: Does not display error message, only error code.
PDO::ERRMODE_WARNING: Displays warning error.
PDO::ERRMODE_EXCEPTION: Throw An exception occurred.
PDO::ATTR_ORACLE_NULLS (valid not only for ORACLE, but also for other databases): ) Specify the corresponding value in php for the NULL value returned by the database.
PDO::NULL_NATURAL: unchanged.
PDO::NULL_EMPTY_STRING: Empty string is converted to NULL.
PDO::NULL_TO_STRING: NULL is converted to an empty string .
PDO::ATTR_STRINGIFY_FETCHES: Convert numeric values to strings when fetching. Requires bool.
PDO::ATTR_STATEMENT_CLASS: Set user-supplied statement class derived from PDOStatement. Cannot be used with persistent PDO instances. Requires array(string classname, array(mixed constructor_args)).
PDO::ATTR_AUTOCOMMIT (available in OCI, Firebird and MySQL): Whether to autocommit every single statement.
PDO: :MYSQL_ATTR_USE_BUFFERED_QUERY (available in MySQL): Use buffered queries.
$rs->setFetchMode(PDO::FETCH_ASSOC); in the example is PDOStatement::setFetchMode(), a declaration of the return type.
are as follows:
PDO::FETCH_ASSOC -- Associative array form
PDO::FETCH_NUM -- Numeric index array form
PDO::FETCH_BOTH -- Both array forms are available, which is missing Provincial
PDO::FETCH_OBJ -- According to the form of the object, similar to the previous mysql_fetch_object()
For more return type declarations (PDOStatement::method name), see the manual.
★Insert, update, delete data,
$db->exec("Delete FROM `xxxx_menu` where mid=43");
Simple To summarize the above operations:
The query operations are mainly PDO::query(), PDO::exec(), PDO::prepare().
PDO::query() is mainly used for operations that return recorded results, especially Select operations.
PDO::exec() is mainly used for operations that do not return a result set, such as Insert, Update, and Delete For other operations, the result it returns is the number of columns affected by the current operation.
PDO::prepare() is mainly a preprocessing operation. You need to use $rs->execute() to execute the SQL statement in the preprocessing. This method can bind parameters and has a relatively powerful function. This article cannot simply describe it. If you understand, you can refer to the manual and other documents.
The main operations for obtaining the result set are: PDOStatement::fetchColumn(), PDOStatement::fetch(), PDOStatement::fetchALL().
PDOStatement::fetchColumn() is a field of the first record specified in the fetch result. The default is the first field.
PDOStatement::fetch() is used to obtain a record,
PDOStatement::fetchAll() is used to obtain all record sets into one. To obtain the results, you can set the type of the required result set through PDOStatement::setFetchMode.
There are two other peripheral operations, one is PDO::lastInsertId() and PDOStatement::rowCount(). PDO::lastInsertId() returns the last insertion operation, and the primary key column type is the last auto-increment ID.
PDOStatement::rowCount() is mainly used for the result set affected by PDO::query() and PDO::prepare()'s Delete, Insert, and Update operations. It is invalid for the PDO::exec() method and Select operation. .
Related recommendations:
The reason why connecting mysql through PDO can prevent injection
ThinkPHP framework based on PDO method to connect database operation example
Example of PDO transaction processing operation in PHP
The above is the detailed content of Detailed explanation of PDO class in PHP5. For more information, please follow other related articles on the PHP Chinese website!

php5和php8的区别在性能、语言结构、类型系统、错误处理、异步编程、标准库函数和安全性等方面。详细介绍:1、性能提升,PHP8相对于PHP5来说在性能方面有了巨大的提升,PHP8引入了JIT编译器,可以对一些高频执行的代码进行编译和优化,从而提高运行速度;2、语言结构改进,PHP8引入了一些新的语言结构和功能,PHP8支持命名参数,允许开发者通过参数名而不是参数顺序等等。

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

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

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

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

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

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

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


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.

Dreamweaver Mac version
Visual web development tools

ZendStudio 13.5.1 Mac
Powerful PHP integrated development environment

Atom editor mac version download
The most popular open source editor

SublimeText3 Linux new version
SublimeText3 Linux latest version
