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


PHP Rectangle::__construct方法代码示例

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


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

示例1: __construct

 public function __construct($size, $image)
 {
     parent::__construct($size, $size, $image);
 }
开发者ID:Just-Man,项目名称:PHP,代码行数:4,代码来源:Square.php

示例2: __construct

 public function __construct($width)
 {
     parent::__construct($width, $width);
 }
开发者ID:sprov03,项目名称:Codeup-Web-Exercises,代码行数:4,代码来源:Square.php

示例3: __construct

 public function __construct($height)
 {
     parent::__construct($height, $height);
 }
开发者ID:ryanski,项目名称:Codeup-Web-Exercises,代码行数:4,代码来源:square.php

示例4: __construct

 public function __construct($x, $y, $size)
 {
     parent::__construct($x, $y, $size, $size);
     $this->size = $size;
     //Expose size to reflection
 }
开发者ID:ZloeSabo,项目名称:rakuten,代码行数:6,代码来源:Square.php

示例5: __construct

 public function __construct($side)
 {
     parent::__construct($side, $side);
 }
开发者ID:pascalallen,项目名称:Codeup_Exercises,代码行数:4,代码来源:square.php

示例6: __construct

 public function __construct($x1, $y1, $x2, $y2)
 {
     parent::__construct($x1, $y1, $x2, $y2);
 }
开发者ID:nouka,项目名称:DesignPatternsExplained,代码行数:4,代码来源:10-2.php

示例7:

 function __construct($h, $w, $r, $s1)
 {
     parent::__construct($h, $w, $r);
     //Square heights = square widths
     $this->height = $s1;
     $this->width = $s1;
     $this->numSides = 4;
     $this->sideLengths[0] = $s1;
     $this->sideLengths[1] = $s1;
     $this->sideLengths[2] = $s1;
     $this->sideLengths[3] = $s1;
     $this->cPerim();
     $this->cArea();
 }
开发者ID:antrachtman,项目名称:PHP,代码行数:14,代码来源:shapes.php

示例8:

 function __construct($bound, $bgcolor = NULL, $fgcolor = NULL, $surfaces = 63, $depth = 15)
 {
     parent::__construct($bound, $bgcolor, $fgcolor);
     $this->surfaces($surfaces);
     $this->depth($depth);
 }
开发者ID:shevtsov-s,项目名称:planetsbook,代码行数:6,代码来源:GDGraphicalObjects.php

示例9: __construct

 public function __construct($width, $height, $margin = 0)
 {
     parent::__construct($width, $height);
     $this->margin = $margin;
 }
开发者ID:codeagent,项目名称:treemap,代码行数:5,代码来源:Map.php

示例10: __construct

 public function __construct($size, $image)
 {
     parent::__construct($size, $size, $image);
     $this->name = 'Square';
 }
开发者ID:gpichurov,项目名称:ittalents_season5,代码行数:5,代码来源:Square.php


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