magpie_simple.php
来自「j2me is based on j2mepolish, client & se」· PHP 代码 · 共 29 行
PHP
29 行
<?phpdefine('MAGPIE_DIR', '../');require_once(MAGPIE_DIR.'rss_fetch.inc');$url = $_GET['url'];if ( $url ) { $rss = fetch_rss( $url ); echo "Channel: " . $rss->channel['title'] . "<p>"; echo "<ul>"; foreach ($rss->items as $item) { $href = $item['link']; $title = $item['title']; echo "<li><a href=$href>$title</a></li>"; } echo "</ul>";}?><form> RSS URL: <input type="text" size="30" name="url" value="<?php echo $url ?>"><br /> <input type="submit" value="Parse RSS"></form> <p><h2>Security Note:</h2>This is a simple <b>example</b> script. If this was a <b>real</b> script we probably wouldn't allow strangers to submit random URLs, and we certainly wouldn't simply echo anything passed in the URL. Additionally its a bad idea to leave this example script lying around.</p>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?