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


PHP UTIL_HtmlTag::escapeHtml方法代码示例

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


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

示例1: parsePage

 private function parsePage($url)
 {
     $content = @UTIL_HttpResource::getContents($url);
     $matches = array();
     preg_match('/<\\s*meta\\s*[^\\>]*?http-equiv=[\'"]content-type[\'"][^\\>]*?\\s*>/i', $content, $matches);
     $meta = empty($matches[0]) ? null : $matches[0];
     preg_match('/content=[\'"][^\'"]*?charset=([\\w-]+)(:[^\\w-][^\'"])*?[\'"]/i', $meta, $matches);
     $encoding = empty($matches[1]) ? 'UTF-8' : $matches[1];
     preg_match('/<\\s*title\\s*>([\\s\\S]*?)<\\s*\\/\\s*title\\s*>/i', $content, $matches);
     $title = empty($matches[1]) ? null : mb_convert_encoding($matches[1], 'UTF-8', $encoding);
     $matches = array();
     $meta = "";
     preg_match('/<\\s*meta\\s*[^\\>]*?name=[\'"]description[\'"][^\\>]*?\\s*>/i', $content, $matches);
     $meta = empty($matches[0]) ? null : $matches[0];
     $matches = array();
     preg_match('/content=[\'"](.*?)[\'"]/i', $meta, $matches);
     $description = empty($matches[1]) ? null : mb_convert_encoding($matches[1], 'UTF-8', $encoding);
     $matches = array();
     preg_match_all('/<\\s*img\\s*.*?src=[\'"](.+?)[\'"].*?>/i', $content, $matches);
     $images = array();
     foreach ($matches[1] as $img) {
         $urlInfo = parse_url($url);
         $imgInfo = parse_url($img);
         if (empty($imgInfo['host'])) {
             $imgDir = dirname($imgInfo['path']);
             $urlScheme = empty($urlInfo['scheme']) ? '' : $urlInfo['scheme'] . '://';
             $urlAddr = $urlScheme . $urlInfo['host'];
             if (strpos($imgDir, '/') === 0) {
                 $img = $urlAddr . $imgInfo['path'];
             } elseif (!empty($urlInfo['path'])) {
                 $pp = pathinfo($urlInfo['path']);
                 $urlPath = $pp['dirname'] . (empty($pp['extension']) ? $pp['basename'] . '/' : '');
                 $img = $urlAddr . $urlPath . $imgInfo['path'];
             } else {
                 $img = $urlAddr . '/' . $imgInfo['path'];
             }
         }
         $images[] = $img;
     }
     $firstImg = reset($images);
     $firstImg = $firstImg ? $firstImg : null;
     return array('type' => 'link', 'description' => UTIL_HtmlTag::escapeHtml($description), 'title' => UTIL_HtmlTag::escapeHtml($title), 'thumbnail_url' => $firstImg, 'allImages' => $images);
 }
开发者ID:ZyXelP,项目名称:oxwall,代码行数:43,代码来源:oembed.php


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