コード例 #1
0
ファイル: Stack.php プロジェクト: rgantt/japha
 /**
  * Creates an empty Stack
  *
  * @access public
  */
 public function __construct()
 {
     parent::__construct();
     $this->elementCount = count($this->list);
 }
コード例 #2
0
ファイル: ViewVector.php プロジェクト: o100ja/rug
 public function __construct($rows, $db = null, $view = null, $name = null)
 {
     parent::__construct($rows, $db);
     $this->_view = $view;
     $this->_name = $name;
 }