update : 2015.11.03
php.shukuma.com
|
The PDO class
The PDO class
(PHP 5 >= 5.1.0, PECL pdo >= 0.1.0)
소개
Represents a connection between PHP and a database server.
클래스 개요
PDO
{
public __construct
( string $dsn
[, string $username
[, string $password
[, array $options
]]] )
public int exec
( string $statement
)
public PDOStatement prepare
( string $statement
[, array $driver_options = array()
] )
public PDOStatement query
( string $statement
)
public string quote
( string $string
[, int $parameter_type = PDO::PARAM_STR
] )
}
Table of Contents
|
|