php中__call()方法使用

前端之家收集整理的这篇文章主要介绍了php中__call()方法使用前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

下面是编程之家 jb51.cc 通过网络收集整理的代码片段。

编程之家小编现在分享给大家,也给大家做个参考。

<无详细内容>
<?PHP
	/*
		作者:shyhero
		邮箱:[email protected]
		Q  Q:1757424878
	*/
	class DB{
		private $sql = array(
			"field"=>"","where"=>"","order"=>"","limit"=>"","group"=>"","having"=>""
		);
		public function __call($functionName,$arr){		//只有在私有成员数组中存在的键才能被调用
			$functionName = strtolower($functionName);
			if(array_key_exists($functionName,$this -> sql)){
				$this -> sql[$functionName] = $arr[0];
			}else{
				echo "调用方法不存在";
			}
			return $this;
		}
		public function select(){
			echo "select from {$this -> sql['field']} user {$this -> sql['where']} {$this -> sql['order']} {$this -> sql['limit']} {$this -> sql['group']} {$this -> sql['having']}";
		}
	}
	$db = new DB();
	$db -> field('sex count(sex)')				//只有在私有成员数组中存在的键才能被调用
		-> where('where sex in("m","w")')
		-> group('group by sex')
		-> having('having avg(age) > 25')
		-> select();
	$db -> query('d');							//这个方法不存在就不能调用
		
		
		
		
		

以上是编程之家(jb51.cc)为你收集整理的全部代码内容,希望文章能够帮你解决所遇到的程序开发问题。

如果觉得编程之家网站内容还不错,欢迎将编程之家网站推荐给程序员好友。

猜你在找的PHP相关文章