当前位置: 软件>php软件
PHP的MySQL扩展 Zebra_Database
本文导语: Zebra_Database 是一个高级的、紧缩的(只包含单个文件)、轻量级的、面向对象的 MySQL 数据库访问封装器,基于 PHP 的 MySQL 扩展开发。提供了各种用于与 MySQL 数据库交互的直观方法,比 PHP 自带的更有趣。 示例代码: debug =...
Zebra_Database 是一个高级的、紧缩的(只包含单个文件)、轻量级的、面向对象的 MySQL 数据库访问封装器,基于 PHP 的 MySQL 扩展开发。提供了各种用于与 MySQL 数据库交互的直观方法,比 PHP 自带的更有趣。
![PHP的MySQL扩展 Zebra_Database[图片]](/img/tech-article-img-php/img_1418525650_744284.gif)
示例代码:
debug = true;
$db->connect('host', 'username', 'password', 'database');
// code goes here
// this should always be present at the end of your scripts;
// whether it should output anything should be controlled by the $debug property
$db->show_debug_console();
// $criteria will be escaped and enclosed in grave accents, and will
// replace the corresponding ? (question mark) automatically
$db->select(
'column1, column2',
'table',
'criteria = ?',
array($criteria)
);
// after this, one of the "fetch" methods can be run:
// to fetch all records to one associative array
$records = $db->fetch_assoc_all();
// or fetch records one by one, as associative arrays
while ($row = $db->fetch_assoc()) {
// do stuff
}
$db->insert(
'table',
array(
'column1' => $value1,
'column2' => $value2,
)
);
?>