|
<?php
$feed_url = "http://www.thinkit.co.jp/rss.xml";
$localstore = "/var/root/rss.xml";
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>フィード読み込み</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="viewport" content="width=320; initial-scale=1.0; maximum-scale=1.0; user-scalable=0;"/>
<style type="text/css" media="screen">@import "iui/iui.css";</style>
<script type="application/x-javascript" src="iui/iui.js"></script>
<body>
<div class="toolbar">
<h1 id="pageTitle"></h1>
<a id="backButton" class="button" href="#"></a>
<a class="button" href="reader.php" target="_self">読む</a>
</div>
<div title="読み込み" class="panel" id="loader" selected="true">
<?php
$feed = fopen($feed_url, "r");
if($feed) {
$local = fopen($localstore, "w");
while(!feof($feed)) fwrite($local, fread($feed, 8092));
fclose($feed);
print "フィード読み込み完了";
}
else {
print "読み込みに失敗しました";
}
?>
</div>
</body>
</html>
|
|