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


PHP SimplePie::SimplePie方法代码示例

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


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

示例1: switch

 function __construct($site_ID)
 {
     switch (SIMPLEPIE_VERSION) {
         case '1.2.1':
             parent::SimplePie();
             break;
         case '1.3':
             parent::__construct();
             break;
         default:
             parent::__construct();
             break;
     }
     parent::__construct();
     $this->set_feed_url(get_post_meta($site_ID, 'syn_feed_url', true));
     $this->default_post_type = get_post_meta($site_ID, 'syn_default_post_type', true);
     $this->default_post_status = get_post_meta($site_ID, 'syn_default_post_status', true);
     $this->default_comment_status = get_post_meta($site_ID, 'syn_default_comment_status', true);
     $this->default_ping_status = get_post_meta($site_ID, 'syn_default_ping_status', true);
     $this->default_cat_status = get_post_meta($site_ID, 'syn_default_cat_status', true);
     add_action('syn_post_pull_new_post', array(__CLASS__, 'save_meta'), 10, 5);
     add_action('syn_post_pull_new_post', array(__CLASS__, 'save_tax'), 10, 5);
     add_action('syn_post_pull_edit_post', array(__CLASS__, 'update_meta'), 10, 5);
     add_action('syn_post_pull_edit_post', array(__CLASS__, 'update_tax'), 10, 5);
 }
开发者ID:gopinathshiva,项目名称:wordpress-vip-plugins,代码行数:25,代码来源:class-syndication-wp-rss-client.php

示例2:

 function rex_rssReader($feed_url = null, $cache_location = null, $cache_duration = null)
 {
     global $REX;
     if ($cache_location == null) {
         $cache_location = $REX['INCLUDE_PATH'] . '/generated/files/';
     }
     parent::SimplePie($feed_url, $cache_location, $cache_duration);
 }
开发者ID:BackupTheBerlios,项目名称:redaxo-svn,代码行数:8,代码来源:class.rss_reader.inc.php


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