/**
* Get a piece of data from the view.
*
* @param string $key
* @return mixed
*/
public function &__get($key)
{
return $this->data[$key];
}
1
fcten 2018-09-26 10:13:24 +08:00
|