当前位置: 首页>>代码示例>>PHP>>正文


PHP Account::__construct方法代码示例

本文整理汇总了PHP中Account::__construct方法的典型用法代码示例。如果您正苦于以下问题:PHP Account::__construct方法的具体用法?PHP Account::__construct怎么用?PHP Account::__construct使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Account的用法示例。


在下文中一共展示了Account::__construct方法的8个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: __construct

 public function __construct($account, $staffID, $staffNo, $name)
 {
     parent::__construct($accountID, $username, $password);
     $this->staffID = $staffID;
     $this->staffNo = $staffNo;
     $this->name = $name;
 }
开发者ID:angrycoders,项目名称:system,代码行数:7,代码来源:Staff.php

示例2: __construct

 /**
  * Giro Account constructor.
  *
  * @param int $number
  * @param float $balance
  * @param int $credit
  */
 public function __construct($number = 12345, $balance = 0.0, $credit = 0)
 {
     if ($credit >= 0) {
         $this->credit = $credit;
     }
     parent::__construct($number, $balance);
 }
开发者ID:beathorst,项目名称:Nicetrash,代码行数:14,代码来源:GiroAccount.php

示例3: __construct

 public function __construct($username, $password)
 {
     parent::__construct($username);
     $this->password = $password;
     $selector = new DBSelect('localhost', 'root', '', 'mydb');
     $result = $selector->hasUserUsername($this->getUsername());
     if ($result) {
         $password = $selector->selectUserPassword($this->getUsername());
         if ($this->password == $password) {
             $this->loggedIn = true;
         } else {
             echo 'password';
         }
     } else {
         echo 'username';
     }
 }
开发者ID:Shifdra,项目名称:smart-cottage,代码行数:17,代码来源:AccountAndUser.php

示例4:

 /**
  *Class constructor
  * @param string $account
  */
 function __construct($account)
 {
     parent::__construct($account);
     $this->mapType = 'GTALK';
 }
开发者ID:didww,项目名称:php-sdk,代码行数:9,代码来源:Gtalk.php

示例5: __construct

 public function __construct()
 {
     parent::__construct();
     $this::$clients = array("10102060000786786720" => "Andrzej Kowalski", "10105040000367586543" => "Karol Nieb³ocki", "10128060000347526750" => "Stefan Nowak", "10158060000353555786" => "Mateusz Szperkowski");
 }
开发者ID:sparrow41,项目名称:training,代码行数:5,代码来源:IdentyfikacjaBankuPoNumerzeKonta.php

示例6: AccountType

 function __construct($name, AssetType $type, Unit $unit)
 {
     $actype = new AccountType($type, $unit);
     parent::__construct($name, $actype);
 }
开发者ID:xander-mbaka,项目名称:momentum,代码行数:5,代码来源:AccountingOrigi.php

示例7:

 function __construct($uniqueID = DEFAULT_UNIQUE_ID, $screenName = "", $password = "", $email = "", $accessLevel = 2, $name = "")
 {
     parent::__construct($uniqueID, $screenName, $password, $email, $accessLevel);
     if ($uniqueID == DEFAULT_UNIQUE_ID) {
         if ($name != "") {
             $this->setName($name);
         }
     } else {
         $this->load();
     }
 }
开发者ID:eebrah,项目名称:schoolsys,代码行数:11,代码来源:User.class.php

示例8: __construct

 public function __construct()
 {
     parent::__construct();
 }
开发者ID:camigreen,项目名称:ttop,代码行数:4,代码来源:user.php


注:本文中的Account::__construct方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。