yii2属性Properties
Posted 天行子
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了yii2属性Properties相关的知识,希望对你有一定的参考价值。
1 添加文件 /basic/models/service/StudentService.php
<?php
namespace app\\models\\service;
use yii\\base\\BaseObject;
class StudentService extends BaseObject {
private $_label;
public function getLabel()
{
return $this->_label;
}
public function setLabel($value)
{
$this->_label = trim($value);
}
}
2 /basic/controller/TestController index添加测试
$object = new StudentService();
$object->label = \'abc\';
$label = $object->label;
var_dump($label);
3 测试访问 http://www.basic.com/test/index
以上是关于yii2属性Properties的主要内容,如果未能解决你的问题,请参考以下文章
unity shader学习笔记 shader基础结构以及Properties面板