本文整理汇总了PHP中feed::doesExistXmlURL方法的典型用法代码示例。如果您正苦于以下问题:PHP feed::doesExistXmlURL方法的具体用法?PHP feed::doesExistXmlURL怎么用?PHP feed::doesExistXmlURL使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类feed
的用法示例。
在下文中一共展示了feed::doesExistXmlURL方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: _t
<dd class="text xml_text"><?php echo func::filterURLModel($feed['xmlURL']); ?></dd>
</dl>
<dl>
<dt><?php echo _t('제목');?></dt>
<dd class="text title_text"><?php echo stripslashes($feed['title']); ?></dd>
</dl>
<dl>
<dt><?php echo _t('설명');?></dt>
<dd class="text description_text"><?php echo stripslashes($feed['description']); ?></dd>
</dl>
<dl>
<dt><?php echo _t('주소');?></dt>
<dd class="text url_text"><?php echo func::filterURLModel($feed['blogURL']); ?> <!--<?php echo $feed['blogTool'];?>--></dd>
</dl>
<?php
if(feed::doesExistXmlURL($feed['xmlURL'])) {
?>
<div class="warning_messages_wrap">
<br />
<?php echo _t('이 블로그는 이미 등록되어 있어 재등록 하실 수 없습니다.');?>
<br /><br />
<a href="#" class="normalbutton" onclick="history.back(); return false;"><span><?php echo _t('뒤로');?></span></a>
</div>
<?php
} else {
$result = $event->on('Add.getFeed', $xml);
if(!is_array($result)) {
$result = feed::getFeedItems($xml);
}