首页 > 代码库 > 类中属性返回形式(对象,关联数组,索引数组)
类中属性返回形式(对象,关联数组,索引数组)
class A {
public $x, $y;
function __construct($x, $y) {
$this->x = $x;
$this->y = $y;
}
function get_value($arr = true) {
if($arr == ‘arr‘) {
// 类中属性以关联数组形式转换返回
return get_object_vars($this);
}else if($arr == ‘obj‘) {
//类中属性以对象形式返回
return $this;
}else {
// 类中属性以索引数组形式转换返回
return array_values(get_object_vars($this));
}
}
}
$aa = new A(100, 200);
$ok = $aa->get_value();
print_r($ok);
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。