PHP 모델 모델 클래스 패키지 데이터베이스 작업 예제
<?php
//
include "./config.php";
class Model
{
public $link;//
public $tableName = "";//
public $field = "*";//
public $allFields = [];//
public $where = "";// where
public $order = "";// order
public $limit = "";// limit
/**
*
* @param string $tableName
*/
public function __construct($tableName)
{
//1.
$this->tableName = PRE.$tableName;
//2.
$this->getConnect();
//3.
$this->getFields();
}
/**
*
*/
public function getConnect()
{
//1.
$this->link = mysqli_connect(HOST,USER,PWD,DB,PORT);
//2.
if (mysqli_connect_errno($this->link)>0){
echo mysqli_connect_error($this->link);
exit;
}
}
/**
* SQL( )
* @param string $sql SQL
* @return array
*/
public function query($sql)
{
$result = mysqli_query($this->link,$sql);
if ($result && mysqli_num_rows($result)>0) {
$arr = [];
while($row = mysqli_fetch_assoc($result)){
$arr[] = $row;
}
}
return $arr;
}
/**
*
*/
public function getFields()
{
//
$sql = "desc {$this->tableName}";
// SQL
$result = $this->query($sql);
$fields = [];
foreach ($result as $k => $v){
$fields[] = $v['Field'];
}
$this->allFields = $fields;
}
/**
* SQL ( )
* @param string $sql SQL
* @return bool|int|string id, true, false
*/
public function exec($sql)
{
$result = mysqli_query($this->link,$sql);
//
if ($result && mysqli_affected_rows($this->link)>0){
// , id
if (mysqli_insert_id($this->link)){
return mysqli_insert_id($this->link);
}
// true
return true;
}else{
// false
return false;
}
}
/**
*
*/
public function select()
{
$sql = "select {$this->field} from {$this->tableName} {$this->where} {$this->order} {$this->limit}";
// SQL
return $this->query($sql);
}
/**
*
* @param string $id id
* @return array
*/
public function find($id="")
{
// id
if (empty($id)){
$where = $this->where;
}else{
$where = "where id={$id}";
}
$sql = "select {$this->field} from {$this->tableName} {$where} limit 1";
// sql
$result = $this->query($sql);
//
return $result[0];
}
/**
*
* @param string $field
* @return object ,
*/
public function field($field)
{
//
if (empty($field)){
return $this;
}
$this->field = $field;
return $this;
}
/**
*
* @return int
*/
public function count()
{
// SQL
$sql = "select count(*) as total from {$this->tableName} limit 1";
$result = $this->query($sql);
//
return $result[0]['total'];
}
/**
*
* @param array $data
* @return bool|int|string id, false
*/
public function add($data){
//
if (!is_array($data)){
return $this;
}
//
if (empty($data)){
die(" ");
}
//
foreach ($data as $k => $v){
if (!in_array($k,$this->allFields)){
unset($data[$k]);
}
}
//
$keys = array_keys($data);
//
$key = implode(",",$keys);
//
$value = implode("','",$data);
// SQL
$sql = "insert into {$this->tableName} ({$key}) values('{$value}')";
// SQL
return $this->exec($sql);
}
/**
*
* @param string $id id
* @return bool true, false
*/
public function delete($id="")
{
// id
if (empty($id)){
$where = $this->where;
}else{
$where = "where id={$id}";
}
$sql = "delete from {$this->tableName} {$where}";
echo $sql;
//
return $this->exec($sql);
}
/**
*
* @param array $data
* @return bool true, false
*/
public function update($data){
//
if (!is_array($data)){
return $this;
}
//
if(empty($data)){
die(" ");
}
$str = "";
//
foreach ($data as $k => $v){
if ($k == "id"){
$where = "where id={$v}";
unset($data[$k]);
}
if (in_array($k,$this->allFields)){
$str .= "{$k}='{$v}',";
}else{
unset($data[$k]);
}
}
//
if (empty($this->where)){
die(" ");
}
//
$str = rtrim($str,",");
$sql = "update {$this->tableName} set {$str} {$this->where}";
return $this->exec($sql);
}
/**
* where
* @param string $where where
* @return $this ,
*/
public function where($where)
{
$this->where = "where ".$where;
return $this;
}
/**
* order
* @param string $order
* @return $this ,
*/
public function order($order)
{
$this->order = "order by ".$order;
return $this;
}
/**
* limit
* @param string $limit limit
* @return $this ,
*/
public function limit($limit)
{
$this->limit = "limit ".$limit;
return $this;
}
/**
*
*
*/
public function __destruct()
{
mysqli_close($this->link);
}
}
//
$a = new Model(" ");
// var_dump($a->find(3));
// var_dump($a->select());
// var_dump($a->count());
// $res = $a->select();
//var_dump($res);
?>
더 많은 PHP 관련 내용 에 관심 이 있 는 독자 들 은 본 사이트 의 주 제 를 볼 수 있다.본 논문 에서 말 한 것 이 여러분 의 PHP 프로 그래 밍 에 도움 이 되 기 를 바 랍 니 다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
laravel에 yo에서 angularJs&coffeescript를 사용할 수 있도록 한다.먼저 yo 명령을 사용할 수 있어야하므로 아래에서 설치 global에 설치한 곳에서 laravel의 프로젝트 루트로 이동. 클라이언트 코드를 관리하는 디렉토리를 만들고 이동합니다. 클라이언트 환경 만들기 이것으로 히...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.