Jump to content
  • 0

RSS


Canard
 Share

Question

Привет %username%. Сразу к делу. Задача: Сделать вывод заголовка и парочку строчек из тем моего ЖЖ ко мне на сайт. Подскажите пожалуйста как это можно сделать или как спросить у гугла?) Спасибо.

Link to comment
Share on other sites

6 answers to this question

Recommended Posts

  • 0

Нашел, сделал так что бы выводились только заголовки, вопрос, как сделать эти заголовки ссылкой на этот пост?)

<?php 
setlocale(LC_ALL, 'ru_RU.CP1251'); //установка русской локали для даты
/**********************************************************
* Parse XML data into an array structure *
* Usage: array parse_rss ( string data ) *
**********************************************************/
function parse_rss($reg_exp, $xml_data) {
preg_match_all($reg_exp, $xml_data, $temp);
return array(
'count'=>count($temp[0]),
'title'=>$temp[1],
);
}

/**********************************************************
* Parse Array data into an HTML structure *
* Usage: string parse_rss ( array data ) *
**********************************************************/
function output_rss($pattern, $rss_data) {
$temp = "";
for($i=0; $i<$rss_data['count']; $i++) {
$temp .= sprintf($pattern,
strftime("%d %B %Y %R", strtotime($rss_data['pubdate'][$i])),
$rss_data['link'][$i],
html_entity_decode($rss_data['title'][$i]),
html_entity_decode($rss_data['desc'][$i])
//добавлено
);
}
return $temp;
}

/**********************************************************
* Settings *
**********************************************************/
$url = 'site.name/rss.xml';

$reg_exp = '#<item>.*?<title>(.*?)<\/title>.*?';
$reg_exp .='<link>(.*?)<\/link>.*?<description>';
$reg_exp .='(.*?)<\/description>.*?<pubDate>'; //исправлено
$reg_exp .= '(.*?)<\/pubDate>.*?<\/item>#si'; //добавлено

$pattern = '<i>%s</i><br><a href="%s"><strong>%s</strong></a><br>%s<br><br>';
//строка форматирования вывода, можно переставить местами поля и добавить теги

/**********************************************************
* Main script *
**********************************************************/
if ( $xml_data = file_get_contents($url) ) {
// вот так можно -->
if ( extension_loaded('mb_string') ) {
$xml_data = mb_convert_encoding($xml_data, "windows-1251", "utf-8");
} elseif ( extension_loaded('iconv') ) {
$xml_data = iconv('utf-8', 'windows-1251', $xml_data);
}
// <--
$rss_data = parse_rss($reg_exp, $xml_data);
echo output_rss($pattern, $rss_data);
}
/**********************************************************
* The END *
**********************************************************/
?>

upd:

В самом верху

...

return array(

'count'=>count($temp[0]),

'title'=>$temp[1],

...

Надо было не удалять

'link'=>$temp[2],

Задача решена)

Edited by Canard
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy