php 100 制作自己的类

    用到的知识:

    1.private私有属性关键字

    2.__construct()初始化方法

    3.常用MySQL函数

    4.常用SQL知识

    实例

<?php
class mysql{
private $host;
private $name;
private $pass;
function __construct($host,$name,$pass){
$this->host=$host;
$this->name=$name;
$this->pass=$pass;
    }
function connect(){
mysql_connect($this->host,$this->name,$this->pass)or die (mysql_error())
   }
fucntion fn_insert($table,$name,$value){
$this->query("insert into $table($name) value ($value)");
}
}
$db= new mysql('localhost','root','root');
$db->fns_insert('test','id,title,dates','')
?>

 

你可能感兴趣的:(php 100 制作自己的类)