本文整理汇总了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);
}
示例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);
}