Created
April 23, 2021 16:54
-
-
Save ichii731/2b5ac5ee00a3a9eea005c05ad6da34b0 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// RSS取得&XMLをPurse | |
$rss = simplexml_load_file('https://0115765.com/feed'); | |
$cnt = 0; | |
foreach($rss->channel->item as $val){ | |
// HTML作成 | |
echo "<a href='" . $val->link . "'>" . $val->title . "</a><br>"; | |
echo date("Y年m月d日", strtotime($val->pubDate)) . "<br>"; | |
$cnt++; | |
// 表示したい件数で終わらせる。 | |
if ($cnt==5) { | |
echo "View Older Article"; | |
break; // 必ずbreakで終わらせる。 | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment