获取天气-步骤6-更多封装-控制访问
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了获取天气-步骤6-更多封装-控制访问相关的知识,希望对你有一定的参考价值。
//dealing with encapsulation.... class MemCache{ private $mem; public function MemCache(){ //some intitialization here... } public function get($key){ return $this->mem[$key]; //else echo "Huston we have a problem!"; } public function set($key, $val){ echo "Huston...just to let you know that an override occurs here to $key with val: $val"; $this->mem[$key] = $val; } }
以上是关于获取天气-步骤6-更多封装-控制访问的主要内容,如果未能解决你的问题,请参考以下文章