Php implements a full range of database operations, php implements database _ PHP Tutorial

Source: Internet
Author: User
Php implements comprehensive database operations, and php implements databases. Php implements a comprehensive database operation class. php implements a database. this example describes how php implements a comprehensive database operation class. Share it with you for your reference. The details are as follows: phpcla php implements a comprehensive database operation class, and php implements a database

This example describes how to implement a full range of database operations in php. Share it with you for your reference. The details are as follows:

<? Php class database {private $ hostname; private $ user; private $ pass; private $ dbname; private $ linkflag; private $ charset; function _ construct () {$ this-> hostname = "localhost"; $ this-> user = "root"; $ this-> pass = "111"; $ this-> dbname = ""; $ this-> charset = "utf8"; // gb2312 GBK utf8 $ this-> linkflag = mysql_connect ($ this-> hostname, $ this-> user, $ this-> pass); mysql_select_db ($ this-> dbname, $ this-> linkflag) or die ($ this-> error (); mysql_query ("set names ". $ this-> charset);} function _ set ($ property_name, $ value) {return $ this-> $ property_name = $ value;} function _ get ($ property_name) {if (isset ($ this-> $ property_name) {return $ this-> $ property_name;} else return null;} function _ call ($ function_name, $ args) {echo"
The method you called $ function_name does not exist.
\ N ";}function query ($ SQL) {$ res = mysql_query ($ SQL) or die ($ this-> error (); return $ res ;} function fetch_array ($ res) {return mysql_fetch_array ($ res);} function fetch_object ($ res) {return mysql_fetch_object ($ res);} function fetch_obj_arr ($ SQL) {$ obj_arr = array (); $ res = $ this-> query ($ SQL); while ($ row = mysql_fetch_object ($ res )) {$ obj_arr [] = $ row;} return $ obj_arr;} function error () {if ($ this-> l Inkflag) {return mysql_error ($ this-> linkflag);} else return mysql_error ();} function errno () {if ($ this-> linkflag) {return mysql_errno ($ this-> linkflag);} else return mysql_errno ();} function affected_rows () {return mysql_affected_rows ($ this-> linkflag );} function num_rows ($ SQL) {$ res = $ this-> execute ($ SQL); return mysql_num_rows ($ res);} function num_fields ($ res) {return mysql_num_fields ($ r Es);} function insert_id () {$ previus_id = mysql_insert_id ($ this-> linkflag); return $ previus_id;} function result ($ res, $ row, $ field = null) {if ($ field = null) {$ res = mysql_result ($ res, $ row);} else $ res = mysql_result ($ res, $ row, $ field ); return $ res;} function version () {return mysql_get_server_info ($ this-> linkflag);} function data_seek ($ res, $ rowNum) {return mysql_data_seek ($ res, $ rowNum);} funct Ion _ destruct () {// mysql_close ($ this-> linkflag) ;}}?>

I hope this article will help you with php programming.

Examples in this article describe the php implementation of a more comprehensive database operation class. Share it with you for your reference. The details are as follows: php CIA...

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.