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


PHP Configure::namespaceSource方法代码示例

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


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

示例1: parse

 /**
  * Parses XML as a string and convert the defined custom tags into HTML.
  *
  * @param string $xml
  * The XML string to be parsed. It represents a full document.
  *
  * @param string|null $emptyNamespaceSource
  * Where do we look for custom tag definition files.
  *
  * @return string
  * A string. It's supposed to be HTML.
  *
  * @throws \Error
  * If XML is not well formed.
  *
  * @since 2.0.0 Second parameter becomes optional.
  * @since 0.0.0
  *
  * @see https://github.com/Odepax/pasap/wiki/Namespaces#the-empty-namespace
  * @see http://www.w3schools.com/xml/xml_validator.asp
  */
 public static function parse(string $xml, $emptyNamespaceSource = null) : string
 {
     if ($emptyNamespaceSource !== null) {
         Configure::namespaceSource('', $emptyNamespaceSource);
     }
     $document = new \DOMDocument("1.0", "UTF-8");
     // Get rid of errors about HTML5.
     libxml_use_internal_errors(true);
     if (!$document->loadXML($xml)) {
         throw new \Error("Why you no check your XML before parsing !?");
     }
     libxml_use_internal_errors(false);
     if (Configure::get('doctype') === Configure::ALWAYS_HTML5) {
         $output = '<!DOCTYPE html>';
     } else {
         if (!is_null($document->doctype)) {
             if ($document->doctype->publicId === '' || $document->doctype->systemId === '') {
                 $output = "<!DOCTYPE {$document->doctype->name}>";
             } else {
                 $output = "<!DOCTYPE {$document->doctype->name} PUBLIC \"{$document->doctype->publicId}\" \"{$document->doctype->systemId}\">";
             }
         } else {
             $output = '';
         }
     }
     $output .= new Element($document->documentElement);
     switch (Configure::get('output')) {
         case Configure::MINIFY:
             return static::minify($output);
         case Configure::PRETTIFY:
             return static::prettify($output);
         default:
             return $output;
     }
 }
开发者ID:odepax,项目名称:pasap,代码行数:56,代码来源:Pasap.php


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