亚洲在线久爱草,狠狠天天香蕉网,天天搞日日干久草,伊人亚洲日本欧美

為了賬號安全,請及時綁定郵箱和手機立即綁定
已解決430363個問題,去搜搜看,總會有你想問的

關于PHP聚合對象的問題

關于PHP聚合對象的問題

PHP
qq_木頭人_19 2017-10-11 14:16:28
class?Address{ protected?$city; public?function?setCity($city){ $this->city?=?$city; } public?function?gerCity(){ return?$this->city; } } class?Person?{ protected?$name; protected?$address; public?function?__construct(){ $this->address?=?new?Address; } public?function?setName($name){ $this->name?=?$name; } public?function?getName(){ return?$this->name; } public?function?__call($method,$arguments){ if(method_exists($this->address,$method)){ return?call_user_func_array(array($this->address,$method),$arguments); } } } $rasmus?=?new?Person; $rasmus->setName('Rasmus?Lerdof'); $rasmus->setCity('Sunnyvale'); print?$rasmus->getName().?'?live?in?'?.?$rasmus->getCity(); ?>最后我輸出得到的結果是: Rasmus Lerdof live in?而不是:?Rasmus Lerdof live in?Sunnyvale ?這是為什么???
查看完整描述

2 回答

已采納
?
qq_青棗工作室_0

TA貢獻446條經驗 獲得超754個贊

public?function?gerCity(){ ?// 這里寫錯了,應該是 getCity,你把get寫成ger了

????????????return?$this->city;

????????}


查看完整回答
2 反對 回復 2017-10-25
?
skyeorz

TA貢獻6條經驗 獲得超0個贊

你是想繼承嗎,肯定不對啊

查看完整回答
反對 回復 2017-10-25
  • 2 回答
  • 0 關注
  • 1494 瀏覽

添加回答

舉報

0/150
提交
取消
微信客服

購課補貼
聯系客服咨詢優惠詳情

幫助反饋 APP下載

慕課網APP
您的移動學習伙伴

公眾號

掃描二維碼
關注慕課網微信公眾號