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

数据库操作类

WBOY
WBOYOriginal
2016-06-06 20:45:001050browse

PHP 写了一个操作类,但是要实例化两次(这边有两个数据库)操作类应该怎么写。

回复内容:

PHP 写了一个操作类,但是要实例化两次(这边有两个数据库)操作类应该怎么写。

增加一个selectdatabase的操作不行吗?

例子

<code>class Db{
    function selectDb($dbname,$link){
       mysql_select_db($dbname, $link);
    }
    function link($host,$user,$pass){
       $link=mysql_connect($host,$user,$pass);
       return $link;
    }
function query(...){...}
....
}
</code>

你在类中创建,看看能不能行
使用的时候只需要试用一下selectdb
使用方法 类似

<code class="lang-php">$db=new Db;
$link=$db->link(......);
$db->selectdb('admin');
$result=$db->query('select * frome admin');
</code>

我这举了个可行性的例子,具体的可以参照现成的数据库类进行相应修改。

Statement:
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