PHP 兼容的 friend 或 internal


PHP 不支持 friend 声明。你可以在 PHP5 中使用 __get 和 __set 方法模拟它,并检查回溯以获取允许的友元类。但这种编码方式被认为笨拙 −

class sample_friend {
   private $__friends = array('My_Friend', 'Other_Friend');
   public function __get($key)    {
      $trace = debug_backtrace();
      if(isset($trace[1]['class']) && in_array($trace[1]['class'], $this->__friends)) {
         return $this->$key;
      }
      // __get() code goes here
      trigger_error('Cannot access private property ' . __CLASS__ . '::$' . $key, E_USER_ERROR);
   }
   public function __set($key, $value) {
      $trace = debug_backtrace();
      if(isset($trace[1]['class']) && in_array($trace[1]['class'], $this->__friends)) {
         return $this->$key = $value;
      }
      // normal __set() code goes here
      trigger_error('Cannot access private property ' . __CLASS__ . '::$' . $key, E_USER_ERROR);
   }
}

更新于: 07-04-2020

256 人次浏览

启动你的 事业

完成课程获得认证

立即开始
广告