Blogger Information
Blog 56
fans 3
comment 1
visits 50789
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
think控制器,请求对象——2018年5月23日
沈斌的博客
Original
799 people have browsed it

think控制器 

1.控制器是一个类,接受用户的请求并将处理结果返回给客户端。

2.系统 中默认的控制器根命名空间app,可以在.env 中的APP_NAMESPACE更改

请求对象

1.请求对象就是一个url地址

2.请求对象中的方法获取和设置这些url参数


依赖注入实例


实例

//构造方法实现依赖注入
class Food
{
	public function getType()
	{
		return 'meat';
	}
}

class Cat
{
	private $food=null;
	public function __construct(Food $food)
	{
		$this->food=$food;
	}

	public function eat()
	{
		return 'cat eat'.$this->food->getType();
	}
}

$food=new Food;
$cat= new Cat($food);
echo $cat->eat();

echo '<hr>';

//普通方法实现依赖注入
class Dog
{
	public function eat(Food $food)
	{
		return 'dog eat'.$food->getType();
	}
}

$food=new Food;
$dog=new Dog();
echo $dog->eat($food);

运行实例 »

点击 "运行实例" 按钮查看在线实例







Correction status:Uncorrected

Teacher's comments:
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post