PHP 로 포 장 된 데이터베이스 모델 Model 클래스 의 전체 예제[PDO 기반]
<?php
//
include "../Config/config.php";
class Model extends PDO
{
protected $tableName = "";//
protected $sql = "";// SQL
protected $limit = "";// limit
protected $order = "";// order
protected $field = "*";//
protected $where = "";// where
protected $allFields = [];//
/**
*
* @param string $tableName
*/
public function __construct($tableName)
{
//
parent::__construct('mysql:host='.HOST.';dbname='.DB.';charset=utf8;port='.PORT,USER,PWD);
//
$this->tableName = PRE.$tableName;
//
$this->getFields();
}
/**
*
* @return array
*/
public function getFields()
{
//
$sql = "desc {$this->tableName}";
$res = $this->query($sql);// pdo
//var_dump($res);
if ($res) {
$arr = $res->fetchAll(2);
//var_dump($arr);
//
$this->allFields = array_column($arr,"Field");
return $this->allFields;
} else {
die(" ");
}
}
/**
*
* @param array $data
* @return int
*/
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}')";
$this->sql = $sql;
// SQL,
return (int)$this->exec($sql);
}
/**
*
* @param string $id id
* @return int
*/
public function delete($id="")
{
// id
if (empty($id)) {
$where = $this->where;
}else{
$where = "where id={$id}";
}
$sql = "delete from {$this->tableName} {$where}";
$this->sql = $sql;
// SQL,
return (int)$this->exec($sql);
}
/**
*
* @param array $data
* @return int
*/
public function update($data)
{
//
if (!is_array($data)){
return $this;
}
//
if (empty($data)) {
die(' ');
}
$str = "";
//
foreach ($data as $k=>$v) {
// id , id
if ($k == "id"){
$this->where = "where id={$v}";
unset($data[$k]);
continue;
}
// id, set
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}";
//echo $sql;
$this->sql = $sql;
return (int)$this->exec($sql);
}
/**
*
* @return array ,
*/
public function select()
{
$sql = "select {$this->field} from {$this->tableName} {$this->where} {$this->order} {$this->limit}";
$this->sql = $sql;
// SQL,
$res = $this->query($sql);
// ,
if ($res){
//
return $res->fetchAll(2);
}
//
return [];
}
/**
*
* @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} {$this->order} limit 1";
$this->sql = $sql;
// sql,
$res = $this->query($sql);
//
if ($res){
// ( )
$result = $res->fetchAll(2);
return $result[0];
}
//
return [];
}
/**
*
* @return int
*/
public function count()
{
$sql = "select count(*) as total from {$this->tableName} {$this->where} limit 1";
$this->sql = $sql;
// SQL,
$res = $this->query($sql);
//
if ($res){
$result = $res->fetchAll(2);
//var_dump($result);
return $result[0]["total"];
}
return 0;
}
/**
*
* @param string $field
* @return object ,
*/
public function field($field)
{
//
if (empty($filed)){
return $this;
}
$this->field = $field;
return $this;
}
/**
* sql
* @return string sql
*/
public function _sql()
{
return $this->sql;
}
/**
* where
* @param string $where where
* @return object ,
*/
public function where($where)
{
$this->where = "where ".$where;
return $this;
}
/**
* order
* @param string $order order
* @return object ,
*/
public function order($order)
{
$this->order = "order by ".$order;
return $this;
}
/**
* limit
* @param string $limit limit
* @return object ,
*/
public function limit($limit)
{
$this->limit = "limit ".$limit;
return $this;
}
}
더 많은 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에 따라 라이센스가 부여됩니다.