包 | XS |
---|---|
继承关系 | class XSComponent |
子类 | XS, XSCommand, XSServer |
版本 | 1.0.0 |
源代码 | sdk/php/lib/XS.class.php |
$a = $obj->text; // $a 值等于 $obj->getText() 的返回值 $obj->text = $a; // 等同事调用 $obj->setText($a)
名称 | 描述 | 定义于 |
---|---|---|
__get() | 魔术方法 __get | XSComponent |
__isset() | 魔术方法 __isset | XSComponent |
__set() | 魔术方法 __set | XSComponent |
__unset() | 魔术方法 __unset | XSComponent |
public mixed __get(string $name)
| ||
$name | string | 属性名称 |
{return} | mixed | 属性值 |
public function __get($name)
{
$getter = 'get' . $name;
if (method_exists($this, $getter)) {
return $this->$getter();
}
// throw exception
$msg = method_exists($this, 'set' . $name) ? 'Write-only' : 'Undefined';
$msg .= ' property: ' . get_class($this) . '::$' . $name;
throw new XSException($msg);
}
魔术方法 __get 取得模拟属性的值, 内部实际调用 getXxx 方法的返回值
public bool __isset(string $name)
| ||
$name | string | 属性名称 |
{return} | bool | 若存在为 true, 反之为 false |
public function __isset($name)
{
return method_exists($this, 'get' . $name);
}
魔术方法 __isset 判断模拟属性是否存在并可读取
public void __set(string $name, mixed $value)
| ||
$name | string | 属性名称 |
$value | mixed | 属性值 |
public function __set($name, $value)
{
$setter = 'set' . $name;
if (method_exists($this, $setter)) {
return $this->$setter($value);
}
// throw exception
$msg = method_exists($this, 'get' . $name) ? 'Read-only' : 'Undefined';
$msg .= ' property: ' . get_class($this) . '::$' . $name;
throw new XSException($msg);
}
魔术方法 __set 设置模拟属性的值, 内部实际是调用 setXxx 方法
public void __unset(string $name)
| ||
$name | string | 属性名称 |
魔术方法 __unset 删除、取消模拟属性, 相当于设置属性值为 null
包 | XS |
---|---|
继承关系 | class XSComponent |
子类 | XS, XSCommand, XSServer |
版本 | 1.0.0 |
源代码 | sdk/php/lib/XS.class.php |
$a = $obj->text; // $a 值等于 $obj->getText() 的返回值 $obj->text = $a; // 等同事调用 $obj->setText($a)
名称 | 描述 | 定义于 |
---|---|---|
__get() | 魔术方法 __get | XSComponent |
__isset() | 魔术方法 __isset | XSComponent |
__set() | 魔术方法 __set | XSComponent |
__unset() | 魔术方法 __unset | XSComponent |
public mixed __get(string $name)
| ||
$name | string | 属性名称 |
{return} | mixed | 属性值 |
public function __get($name)
{
$getter = 'get' . $name;
if (method_exists($this, $getter)) {
return $this->$getter();
}
// throw exception
$msg = method_exists($this, 'set' . $name) ? 'Write-only' : 'Undefined';
$msg .= ' property: ' . get_class($this) . '::$' . $name;
throw new XSException($msg);
}
魔术方法 __get 取得模拟属性的值, 内部实际调用 getXxx 方法的返回值
public bool __isset(string $name)
| ||
$name | string | 属性名称 |
{return} | bool | 若存在为 true, 反之为 false |
public function __isset($name)
{
return method_exists($this, 'get' . $name);
}
魔术方法 __isset 判断模拟属性是否存在并可读取
public void __set(string $name, mixed $value)
| ||
$name | string | 属性名称 |
$value | mixed | 属性值 |
public function __set($name, $value)
{
$setter = 'set' . $name;
if (method_exists($this, $setter)) {
return $this->$setter($value);
}
// throw exception
$msg = method_exists($this, 'get' . $name) ? 'Read-only' : 'Undefined';
$msg .= ' property: ' . get_class($this) . '::$' . $name;
throw new XSException($msg);
}
魔术方法 __set 设置模拟属性的值, 内部实际是调用 setXxx 方法
public void __unset(string $name)
| ||
$name | string | 属性名称 |
魔术方法 __unset 删除、取消模拟属性, 相当于设置属性值为 null
留下一条评论吧!
请到论坛 登录 后刷新本页面!