PHP로 RSS/Atom 피드 구문 분석
Magpie RSS를 사용하여 RSS 또는 Atom 피드를 구문 분석할 때 처리할 수 있는 대체 옵션을 고려하는 것이 중요합니다. 잘 구성된 피드. 그러한 옵션 중 하나가 SimpleXML입니다.
PHP에 내장된 SimpleXML은 XML 문서 구문 분석을 위한 사용자 친화적인 구조를 제공합니다. XML 오류를 감지하고 문제가 발생하면 경고합니다. 이러한 오류를 해결하려면 HTML Tidy를 사용하여 소스를 정리하는 것을 고려할 수 있습니다.
다음은 SimpleXML을 활용하여 RSS 피드를 구문 분석하는 기본 클래스입니다.
class BlogPost { public $date; public $ts; public $link; public $title; public $text; } class BlogFeed { public $posts = []; public function __construct($file_or_url) { $file_or_url = $this->resolveFile($file_or_url); if (!$x = simplexml_load_file($file_or_url)) return; foreach ($x->channel->item as $item) { $post = new BlogPost(); $post->date = (string)$item->pubDate; $post->ts = strtotime($item->pubDate); $post->link = (string)$item->link; $post->title = (string)$item->title; $post->text = (string)$item->description; $post->summary = $this->summarizeText($post->text); $this->posts[] = $post; } } private function resolveFile($file_or_url) { if (!preg_match('|^https?:|', $file_or_url)) $feed_uri = $_SERVER['DOCUMENT_ROOT'] .'/shared/xml/'. $file_or_url; else $feed_uri = $file_or_url; return $feed_uri; } private function summarizeText($summary) { $summary = strip_tags($summary); $max_len = 100; if (strlen($summary) > $max_len) $summary = substr($summary, 0, $max_len) . '...'; return $summary; } }
SimpleXML을 활용하고 XML을 처리합니다. 오류가 발생하면 PHP를 사용하여 RSS와 Atom 피드를 모두 효과적으로 구문 분석할 수 있습니다.
위 내용은 SimpleXML을 사용하여 PHP에서 RSS/Atom 피드를 효율적으로 구문 분석하려면 어떻게 해야 합니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!