예제 #1
0
파일: huangye.php 프로젝트: ruoL/fun-x
 public function __construct()
 {
     parent::__construct();
     $this->_curruid = (int) $this->auth->user('uid');
     $this->_attach_dir = config_item('site_attach_dir') . DIRECTORY_SEPARATOR;
     if (@is_dir($this->_attach_dir) === FALSE) {
         create_dir($this->_attach_dir);
     }
 }
예제 #2
0
 public function __construct()
 {
     parent::__construct();
     $this->varB = 'B';
 }
예제 #3
0
파일: category.php 프로젝트: ruoL/fun-x
 public function __construct()
 {
     parent::__construct();
 }
예제 #4
0
 public function __construct($v)
 {
     parent::__construct($v);
     $this->x = $v * 2;
 }
예제 #5
0
파일: B.php 프로젝트: VLis007/levelup2016
 public function __construct($name, $login)
 {
     parent::__construct($name);
     // вызов конструктора базового класса
     $this->_login = $login;
 }
 public function __construct()
 {
     parent::__construct();
     // OK
     Z::f();
 }
예제 #7
0
파일: bug48215.php 프로젝트: badlamer/hhvm
 public function __construct()
 {
     echo __METHOD__ . "\n";
     parent::__construct();
 }
예제 #8
0
파일: B.php 프로젝트: nelson6e65/php_nml
 public function __construct()
 {
     parent::__construct();
     unset($this->property2, $this->property4);
 }
예제 #9
0
 function __construct($a)
 {
     parent::__construct($a);
     $this->y = $a + 1;
 }
예제 #10
0
 function __construct($x, $y)
 {
     parent::__construct($x);
     $this->j = $y;
 }
예제 #11
0
 function __construct($i, $j)
 {
     parent::__construct($i);
     $this->j = $j;
 }
예제 #12
0
파일: bug40784.php 프로젝트: badlamer/hhvm
 function __construct()
 {
     parent::__construct();
     parent::__constrUct();
 }
예제 #13
0
파일: 0057.php 프로젝트: michaelprem/phc
 public function __construct($Name)
 {
     parent::__construct('B constructor: ' . $Name);
 }
예제 #14
0
파일: user.php 프로젝트: ruoL/fun-x
 public function __construct()
 {
     parent::__construct();
     $this->_curruid = (int) $this->auth->user('uid');
 }
예제 #15
0
파일: test2.php 프로젝트: 866391583/php
 public function __construct()
 {
     echo "\nConstruct B...\n";
     echo $this->name;
     parent::__construct();
 }