この質問には2つの部分があります。
パート1。昨日、RSSフィードからXMLのコンテンツ全体をエコーするコードがありました。それから私はそれを私のphpドキュメントから削除し、それを保存しました、そして私は完全に自分自身を蹴っています。
構文は次のようになっていると思います。
$xml = simplexml_load_file($url);
echo $xml;
私はそれをもう一度試しましたが、それは機能していません、それでどうやら私は正しい構文を忘れて、あなたの助けを使うことができました、親愛なるstackoverflow質問回答者。
私は自分が何をしていたかを理解しようとし続けていますが、GoogleやPHPサイトで例を見つけることができません。print_r($ url);を試しました。コマンドを実行すると、フィードのアトマイズされたバージョンのように見えます。弦全体、いぼ、そしてすべてが欲しいです。RSSリンクをウィンドウに入力して表示するだけでよいことに気付きましたが、コーディングとうなずきをしているときに、PHPページにRSSリンクを表示しておくと役に立ちました。
パート2これを再構築したかった主な理由は、プライベートドメインでホストされているWebページに表示するためにブログRSSからノードを解析しようとしているためです。ダミーのブログを投稿しましたが、ダミーの投稿の1つにタイトルを追加できなかったときに、フォーマットの不具合を発見しました。
では、この状況で何をするのでしょうか?私は少し試しました:
if(entry->title == "")
{$entryTitle = "untitled";}
それはまったく機能しませんでした。
これがブログを処理するための私の全体のphpスクリプトです:
<?php
/*create variables*/
$subtitle ="";
$entryTitle="";
$html = "";
$pubDate ="";
/*Store RSS feed address in new variable*/
$url = "http://www.blogger.com/feeds/6552111825067891333/posts/default";
/*Retrieve BLOG XML and store it in PHP object*/
$xml = simplexml_load_file($url);
print_r($xml);
/*Parse blog subtitle into HTML and echo it on the page*/
$subtitle .= "<h2 class='blog'>" . $xml->subtitle . "</h2><br />";
echo $subtitle;
/*Go through all the entries and parse them into HTML*/
foreach($xml->entry as $entry){
/*retrieve publication date*/
$xmlDate = $entry->published;
/*Convert XML timestamp into PHP timestamp*/
$phpDate = new DateTime(substr($xmlDate,0,19));
/*Format PHP timestamp to something humans understand*/
$pubDate .= $phpDate->format('l\, F j\, Y h:i A');
if ($entry->title == "")
{
$entryTitle .= "Untitled";
}
echo $entry->title;
/*Pick through each entry and parse each XML tree node into an HTML ready blog post*/
$html .= "<h3 class='blog'>".$entry->title . "<span class='pubDate'> | " .$pubDate . "</span></h3><p class='blog'>" . $entry->content . "</p>";
/*Print the HTML to the web page*/
echo $html;
/*Set the variables back to empty strings so they do not repeat data upon reiteration*/
$html = "";
$pubDate = "";
}
?>