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


PHP Feature::__toString方法代码示例

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


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

示例1: __toString

 public function __toString()
 {
     $parent_string = parent::__toString();
     $output = array();
     $output[] = $parent_string;
     foreach ($this->features as $feature) {
         $output[] = $feature->__toString();
     }
     return implode("\n", $output);
 }
开发者ID:jtet,项目名称:php-libkml,代码行数:10,代码来源:Container.php

示例2: __toString

 public function __toString()
 {
     $parent_string = parent::__toString();
     $output = array();
     $output[] = sprintf("<Placemark%s>", isset($this->id) ? sprintf(" id=\"%s\"", $this->id) : "");
     $output[] = $parent_string;
     if (isset($this->geometry)) {
         $output[] = $this->geometry->__toString();
     }
     $output[] = "</Placemark>";
     return implode("\n", $output);
 }
开发者ID:jtet,项目名称:php-libkml,代码行数:12,代码来源:Placemark.php

示例3: __toString

 public function __toString()
 {
     $parent_string = parent::__toString();
     $output = array();
     $output[] = $parent_string;
     if (isset($this->color)) {
         $output[] = sprintf("<color>%s</color>", $this->color);
     }
     if (isset($this->drawOrder)) {
         $output[] = sprintf("<drawOrder>%s</drawOrder>", $this->drawOrder);
     }
     if (isset($this->icon)) {
         $output[] = $this->icon->__toString();
     }
     return implode("\n", $output);
 }
开发者ID:jtet,项目名称:php-libkml,代码行数:16,代码来源:Overlay.php

示例4: __toString

 public function __toString()
 {
     $parent_string = parent::__toString();
     $output = array();
     $output[] = sprintf("<NetworkLink%s>", isset($this->id) ? sprintf(" id=\"%s\"", $this->id) : "");
     $output[] = $parent_string;
     if (isset($this->refreshVisibility)) {
         $output[] = sprintf("\t<refreshVisibility>%d<refreshVisibility>", $this->refreshVisibility);
     }
     if (isset($this->flyToView)) {
         $output[] = sprintf("\t<flyToView>%d<flyToView>", $this->flyToView);
     }
     if (isset($this->link)) {
         $output[] = $this->link->__toString();
     }
     $output[] = "</NetworkLink>";
     return implode("\n", $output);
 }
开发者ID:cdyweb,项目名称:php-libkml,代码行数:18,代码来源:NetworkLink.php


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