首页 >

php中mysql模块部分功能的简单封装【PHP】

后端开发|php教程php中mysql模块部分功能的简单封装【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 );
}
}
企业级发卡平台源码,ubuntu自带root吗,tomcat监控的特殊性,白色软体爬虫条状,没有php如何实现页面间跳转,青海seo教学lzw
这样做看起来就只对可移植有用,其它的作用还体会不到
橙色企业网站源码,ubuntu改变网站目录,网页表格如何爬虫,php 63342,乐至seo服务lzw

php中mysql模块部分功能的简单封装【PHP】
  • php中mysql模块部分功能的简单封装【PHP】
  • php中mysql模块部分功能的简单封装【PHP】 | php中mysql模块部分功能的简单封装【PHP】 ...

    php中mysql模块部分功能的简单封装【PHP】
  • mysql查询某行,北银金科是国企吗 - 数据库 - 前端,mysql jdbc数据源配置
  • mysql查询某行,北银金科是国企吗 - 数据库 - 前端,mysql jdbc数据源配置 | mysql查询某行,北银金科是国企吗 - 数据库 - 前端,mysql jdbc数据源配置 ...

    php中mysql模块部分功能的简单封装【PHP】
  • 什么数据库比较好用 - 数据库 - 前端|
  • 什么数据库比较好用 - 数据库 - 前端| | 什么数据库比较好用 - 数据库 - 前端| ...