MySQL模块部分函数在PHP中的简单封装

来源:爱站网时间:2021-02-08编辑:网友分享
在PHP开发中从运行到结束都需要实现一个类的对象,才能完成全部任务,那么MySQL模块部分函数在PHP中的简单封装,大家都知道吗?别着急,一起参考看看吧!

在PHP开发中从运行到结束都需要实现一个类的对象,才能完成全部任务,那么MySQL模块部分函数在PHP中的简单封装,大家都知道吗?别着急,一起参考看看吧!

复制代码 代码如下:

class mysql
{
private $db; // datebase connect
private $result; // mysql result
static private $mysql; // mysql object
private function __construct()
{ // The work before Create an object
$this->db = mysql_connect('localhost','root','');
mysql_select_db('hello', $this->db );
}
public static function getObject()
{ //if have a object,return that object,Not create
if(! self::$mysql instanceof self)
self::$mysql = new self;
return self::$mysql;
}
public function query($sql)
{
$this->result = mysql_query($sql, $this->db);
return $this->result;
}
public function fetch()
{
if( isset($this->result ) )
return mysql_fetch_assoc( $this->result );
}
public function error()
{
return 'error:'.mysql_error();
}
public function num() // for sql select result
{
return mysql_num_rows( $this->result );
}
public function close()
{ // return true or false
return mysql_close( $this->db );
}
}


MySQL模块部分函数在PHP中的简单封装,爱站技术频道小编分享到这里就结束了,如果你还有想要学习的知识,欢迎来到js.aizhan.com吧!

上一篇:PHP开发之转换字符串的操作

下一篇:PHP方法调用模式和函数调用模式

您可能感兴趣的文章

相关阅读

热门软件源码

最新软件源码下载