日期:2014-05-17  浏览次数:20704 次

新人:为什么不能通过_get()与_set()给private字段赋值并输出?
例子:
<html>
<head>
<title></title>
</head>
<body>
<?php
class Employee {
private $name;

function _get($propName) {
echo "_get called!<br />"; // 并且不能输出任何字串

return $this->$propName;
}

function _set($propName, $propValue) {
$this->$propName = $propValue;
}
}

$employee = new Employee();
$employee->name = "Mario";

echo $employee->name."<br />";
?>
</body>
</html>

为什么会这样子?是不是要开启什么参数?

------解决方案--------------------
function _get($propName) {
echo "_get called!<br />"; // 并且不能输出任何字串

return $this->$propName;
}
标红的不是只有一个下划线吗?
实现这个功能的魔术函数名是 __get
是两个下划线