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


PHP Point::__construct方法代码示例

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


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

示例1: array

 function __construct()
 {
     parent::__construct();
     require_once 'libs/Twig-1.16.0/lib/Twig/Autoloader.php';
     \Twig_Autoloader::register();
     //$this->loader = new \Twig_Loader_String();
     $this->loader = new \Twig_Loader_Filesystem('./');
     $this->twig = new \Twig_Environment($this->loader, array('cache' => 'libs/Twig-1.16.0/cache', 'debug' => true));
     $this->twig->addExtension(new \Twig_Extension_Debug());
 }
开发者ID:dsb005,项目名称:intent,代码行数:10,代码来源:angle.php

示例2:

 function __construct()
 {
     parent::__construct();
     $db = new \dot\libs\DB();
 }
开发者ID:dsb005,项目名称:intent,代码行数:5,代码来源:line.php

示例3: __construct

 public function __construct($lat, $lng)
 {
     parent::__construct($lng, $lat);
 }
开发者ID:stefda,项目名称:pocketsail,代码行数:4,代码来源:LatLng.php

示例4: __construct

 public function __construct($x = 0, $y = 0, $color = RED)
 {
     parent::__construct($x, $y);
     $this->color = $color;
     echo "\nInside " . __METHOD__ . ", {$this}\n\n";
 }
开发者ID:mfsousa,项目名称:php-langspec,代码行数:6,代码来源:sleep_and_wakeup.php

示例5: __construct

 public function __construct(PointDataInterface $position)
 {
     parent::__construct($position->getX(), $position->getY());
 }
开发者ID:talesoft,项目名称:phim,代码行数:4,代码来源:GeometryBase.php

示例6: __construct

 public function __construct()
 {
     parent::__construct();
 }
开发者ID:nadiaborisova,项目名称:php-mysql-course-softacad,代码行数:4,代码来源:line.php

示例7: __construct

 /**
  * Constructor
  *
  * @param  integer $x      the x-coordinate.
  * @param  integer $y      the y-coordinate.
  * @param  Color   $color  the color of this pixel.
  *
  */
 public function __construct($x, $y, ImageColor $color)
 {
     $this->color = $color;
     parent::__construct($x, $y);
 }
开发者ID:passbolt,项目名称:passbolt_selenium,代码行数:13,代码来源:pixel.php

示例8: __construct

 public function __construct($row, $column, $flag = false)
 {
     parent::__construct($row, $column);
     $this->flag = $flag;
 }
开发者ID:SamyGhannad,项目名称:CtCI-6th-Edition,代码行数:5,代码来源:Move.php

示例9: __construct

 public function __construct($x, $y)
 {
     parent::__construct($x, $y);
     $this->latitude = $x;
     $this->longitude = $y;
 }
开发者ID:aejnsn,项目名称:postgresify,代码行数:6,代码来源:GeoPoint.php


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