Home > Backend Development > PHP Tutorial > Medoo PHP数据库操作类

Medoo PHP数据库操作类

WBOY
Release: 2016-06-20 13:04:40
Original
1407 people have browsed it

Medoo是一个加速网站开发的最轻量的PHP数据库框架类!Medoo可以极大地加快你的PHP项目的开发。在进行Web开发的时候,很大一部分企业或个人都会选择使用PHP语言,而Medoo则可以起到锦上添花的作用。缩短你的开发周期。Medoo强大而完善的API不仅完全可以满足你最常用最基本的需求,而且使用起来也非常简单。即使要进行二次开发,也丝毫不成问题。

一、Medoo环境需求

(1)、PHP 5.1以上并开启PDO支持

(2)、支持MySQL,MSSQL,SQLite等数据库,或者更多其它数据库。

(3)、确保数据库pdo扩展在php.ini中被安装并启用。

二、Medoo使用

(1)、Mysql中Medoo使用

require 'medoo.php';
$database = new medoo(array(
//必选
'database_type' => 'mysql',
'database_name' => 'name',
'server' => 'localhost',
'username' => 'your_username',
'password' => 'your_password',
//可选
'port' => 3306,
'charset' => 'utf8',
// DB连接驱动选项
'option' => array(
PDO::ATTR_CASE => PDO::CASE_NATURAL
)));

(2)、sqlite中Medoo使用

require_once 'medoo.php';
$database = new medoo([
'database_type' => 'sqlite',
'database_file' => 'my/database/path/database.db']
);
$database->insert("account", [
"user_name" => "foo",
"email" => "foo@bar.com"]
);

项目地址:http://medoo.in/


Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template