當前位置: 首頁>>代碼示例>>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;未經允許,請勿轉載。