Home > Backend Development > PHP Tutorial > 种的成员可以用另一个类来声明么,对这个成员的赋值度需要this函数这样么

种的成员可以用另一个类来声明么,对这个成员的赋值度需要this函数这样么

WBOY
Release: 2016-06-13 11:37:40
Original
813 people have browsed it

类的成员可以用另一个类来声明么,对这个成员的赋值度需要this函数这样么

class A
{
   var $sun = '';
   var $sav = false;
}

class B
{
   var $vo = A;
   var $tmp = 0 ;
}

这样不对吧?

那这样:class B

    var $vo ;
   var $tmp = 0 ;
   function f()
   {
      $this->vo = new a;
    }


在使用中:
$cls = new B ;
$cls->vo->tmp = 1; //这样也不可以啊? 用类成员的函数操作?








Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template