这里提到的容器相当于注册树
<?php
namespace app\index\controller;
class Demo1
{
//可以通过字符串,数值用GET方式来传值到类方法中
//http://localhost/tp5.1/public/index.php/index/demo1/getname/name/111
public function getName($name='Peter')
{
return 'Hello'.$name;
}
//如果一个类有了命名空间,需要在这个类前加入命名空间路径才算是一个完整的类
/**
* \app\common\Temp $temp 将会触发依赖注入
* 依赖注入实际上就将一个对象传入到方法中
*/
public function getMethod(\app\common\Temp $temp)
{
// \app\common\Temp $temp 等价于
// $temp = new \app\common\Temp;
$temp->setName('PHP中文网');
return $temp->getName();
}
}
<?php
namespace app\common;
class Temp
{
public function __construct($name="Peter")
{
$this->name = $name;
}
public function setName($name)
{
$this->name = $name;
}
public function getName()
{
return '方法是:'.__METHOD__.'属性是:'.$this->name;
}
}