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


PHP Xml::escape方法代码示例

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


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

示例1: addTags

 /**
  * Populates <variation-attribute-values> child elements, from a mapping of attribute values to names
  *
  * @param array $map
  */
 public function addTags($map = [])
 {
     $xml = '';
     foreach ($map as $id => $value) {
         $xml .= '<variation-attribute-value value="' . Xml::escape($id) . '">
                     <display-value xml:lang="x-default">' . Xml::escape($value) . '</display-value>
                 </variation-attribute-value>';
     }
     $this->elements['variation-attribute-values'] = $xml;
 }
开发者ID:fusionspim,项目名称:php-demandware-xml,代码行数:15,代码来源:Variant.php

示例2: setCustomAttributes

 /**
  * Populates <custom-attributes> child elements, from a mapping of attribute ids to values
  * Values can be empty and still exported, however attributes with null values aren't exported
  * Attributes are exported sorted alphabetically by id for consistency and ease of diffing exports...
  *
  * @param array $map
  */
 public function setCustomAttributes(array $map)
 {
     ksort($map);
     $xml = '';
     foreach ($map as $key => $value) {
         if (is_null($value)) {
             continue;
         }
         $xml .= '<custom-attribute attribute-id="' . Xml::escape($key) . '">';
         if (is_array($value)) {
             foreach ($value as $individual) {
                 if (is_null($individual)) {
                     continue;
                 }
                 $xml .= '<value>' . Xml::escape($individual) . '</value>' . PHP_EOL;
             }
         } else {
             $xml .= Xml::escape($value);
         }
         $xml .= '</custom-attribute>' . PHP_EOL;
     }
     $this->elements['custom-attributes'] = $xml;
 }
开发者ID:fusionspim,项目名称:php-demandware-xml,代码行数:30,代码来源:Base.php

示例3: setProducts

 /**
  * Only applies to Sets
  *
  * @param array $products
  */
 public function setProducts(array $products = [])
 {
     $xml = '';
     foreach ($products as $id) {
         $xml .= '<product-set-product product-id="' . Xml::escape($id) . '" />' . PHP_EOL;
     }
     $this->elements['product-set-products'] = $xml;
 }
开发者ID:fusionspim,项目名称:php-demandware-xml,代码行数:13,代码来源:Product.php


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