<?php
class Db{
public static function __callStatic($method,$params){
$query = new Query();
return call_user_func_array([self::connect(),$method],$params);
}
public static function connect(){
return new Query();
}
}
class Query{
public function $table_name;
public function table($name){
$this->table_name = $name;
return $this;
}
public function where($a,$b = ''){
var_dump($a+$b);
return $this;
}
}
$test1 = Db::name('test')->where(1,2)->where(5);
版权属于:本文是原创文章,版权归 吾梦小站 所有。
本文链接:https://nikm.cn/archives/60.html
本站所有原创文章采用 知识共享署名-非商业性使用 4.0 国际许可协议 进行许可。
您可以自由地转载和修改,但请务必注明文章来源并且不可用于商业目的。