當我運行該腳本,我得到這個問題:多個函數調用不工作
Fatal error: Call to a member function setAge() on a non-object in /opt/lampp/htdocs/test/index.php on line 16
<?php
class Student {
public function setName($name,$value){
$this->$name=$value;
}
public function setAge($name,$value){
$this->$name=$value;
}
}
$Student1=new Student;
$Student1->setName('name', 'sanjeewani')
->setAge('age', '26');
var_dump($Student1);
?>
我怎樣才能解決這個問題?
不投票和離開,說出了什麼問題。除非他/她從來沒有得到正確的。 – sampathpremarathna 2013-03-14 17:35:16