数据库操作类

WBOY
Release: 2016-06-06 20:45:00
Original
1016 people have browsed it

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>
Copy after login

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

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

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

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