當前位置: 首頁>>代碼示例>>PHP>>正文


PHP BaseClass類代碼示例

本文整理匯總了PHP中BaseClass的典型用法代碼示例。如果您正苦於以下問題:PHP BaseClass類的具體用法?PHP BaseClass怎麽用?PHP BaseClass使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


在下文中一共展示了BaseClass類的15個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: testCopyPrivatePropertyFromSubClassObject

 public function testCopyPrivatePropertyFromSubClassObject()
 {
     $obj1 = new SubClass();
     $obj1->setPrivateProperty('Modified private property value of BaseClass');
     $obj2 = new BaseClass();
     $obj2->copyPrivateProperty($obj1);
     $this->assertEquals('Modified private property value of BaseClass', $obj2->getPrivateProperty());
     $obj3 = new SubClass();
     $obj3->copyPrivateProperty($obj1);
     $this->assertEquals('Modified private property value of BaseClass', $obj3->getPrivateProperty());
 }
開發者ID:beeare,項目名稱:ObjectOrientedPHP,代碼行數:11,代碼來源:InheritanceTest.php

示例2: Controller

 /**
  * 加載控製器
  */
 public static function Controller($class, $isView = false, $isMuti = false, $functionName = null)
 {
     $class = str_replace(array('.', '#'), array('\\', '.'), $class);
     if ($isView) {
         self::$isView = true;
         self::$isViewMuti = $isMuti;
     }
     BaseClass::$functionName = $functionName;
     return self::getClass("\\AppMain\\controller\\" . $class . "Controller");
 }
開發者ID:phpchen,項目名稱:yiyuangou,代碼行數:13,代碼來源:Router.class.php

示例3:

	public function
	save() {
		if (!$this->id) {
			return $this->create();
		}
		return parent::save();
	}
開發者ID:Naddiseo,項目名稱:WW2Game,代碼行數:7,代碼來源:Message.php

示例4:

	public function
	create() {
		if (!$this->weaponCount or $this->weaponCount <= 0) {
			return 0;
		}
		return parent::create();
	}
開發者ID:Naddiseo,項目名稱:WW2Game,代碼行數:7,代碼來源:Weapon.php

示例5: loadFromDB

 function loadFromDB($id)
 {
     $ret = parent::loadFromDB($id);
     global $_CONF;
     $this->invitationExpired = strtotime($this->invitationDate) < strtotime('now');
     $this->Active = $this->invitationActive && !$this->invitationExpired;
     return $ret;
 }
開發者ID:alex-k,項目名稱:velotur,代碼行數:8,代碼來源:Invitations_class.php

示例6: test

 public function test($tmp = null)
 {
     echo "childClass::sss";
     parent::test();
     self::called();
     echo self::CONST_VALUE;
     echo static::$sValue1;
 }
開發者ID:lilili001,項目名稱:think,代碼行數:8,代碼來源:class06_1.php

示例7: __construct

 /**
  * 
  */
 public function __construct($id, $name, $css_class, $script)
 {
     parent::__construct();
     $this->id = $id;
     $this->name = $name;
     $this->css_class = $css_class;
     $this->script = $script;
 }
開發者ID:alsimfer,項目名稱:HomePage,代碼行數:11,代碼來源:Table.php

示例8: array

 function __construct($attributes = array(), $entities = array())
 {
     $this->entities = array();
     foreach ($entities as $entity) {
         $this->append($entity->copy());
     }
     parent::__construct($attributes);
 }
開發者ID:k3rn3l3rr0r,項目名稱:dxfwriter,代碼行數:8,代碼來源:Collection.php

示例9: __construct

 /**
  * 
  */
 public function __construct($id, $name, $css_class, $checked = FALSE)
 {
     parent::__construct();
     $this->id = $id;
     $this->name = $name;
     $this->css_class = $css_class;
     $this->checked = $checked;
 }
開發者ID:alsimfer,項目名稱:HomePage,代碼行數:11,代碼來源:Checkbox.php

示例10: __construct

 public function __construct($key, $quantity, $price)
 {
     parent::__construct();
     $this->_key = $key;
     $this->_quantity = $quantity;
     $this->_price = $price;
     $this->_features = array();
 }
開發者ID:gotnospirit,項目名稱:php-dpat,代碼行數:8,代碼來源:CaddyItem.php

示例11: __construct

 public function __construct($page_id)
 {
     parent::__construct();
     if ($page_id != NULL) {
         $page_id = (int) $page_id;
         util_Validator::validate($page_id, 'integer');
         $this->init($page_id);
     }
 }
開發者ID:alsimfer,項目名稱:HomePage,代碼行數:9,代碼來源:Page.php

示例12: __construct

 public function __construct($shipment_id = 0)
 {
     parent::__construct();
     if ((int) $shipment_id > 0) {
         $shipment_id = (int) $shipment_id;
         util_Validator::validate($shipment_id, 'integer');
         $this->init($shipment_id);
     }
 }
開發者ID:alsimfer,項目名稱:HomePage,代碼行數:9,代碼來源:Shipment.php

示例13: array

 function __construct($attributes = array())
 {
     $defaults = array();
     $defaults['name'] = 'Writer';
     $defaults['flag'] = 64;
     $defaults['color'] = 7;
     $defaults['lineType'] = 'continuous';
     parent::__construct(array_merge($defaults, $attributes));
 }
開發者ID:k3rn3l3rr0r,項目名稱:dxfwriter,代碼行數:9,代碼來源:Layer.php

示例14:

 /**
  * Constructor
  *
  * Initialize things.
  *
  */
 function __construct()
 {
     if (null == self::$_appInstance) {
         self::$_appInstance = Slim::getInstance();
     }
     if (null == self::$_dbInstance) {
         self::$_dbInstance = PDOAdpter::getInstance();
     }
 }
開發者ID:edupol,項目名稱:examsystem,代碼行數:15,代碼來源:BaseClass.php

示例15: array

 function __construct($id = false)
 {
     $this->_table = "Partners";
     $this->_idfield = "partnerID";
     $this->_LINKED = array();
     $this->_FIELDTYPES = array('partnerID' => 'hidden');
     $this->_CHECKFIELDS = array('partnerID' => 'required', 'partnerName' => 'required');
     $this->_FIELDNAMES = array('partnerID' => '#', 'partnerName' => 'Имя/название');
     return parent::__construct($id);
 }
開發者ID:alex-k,項目名稱:velotur,代碼行數:10,代碼來源:Partners_class.php


注:本文中的BaseClass類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。