php rss操作,PHP解析RSS的方法

2021-10-22 23:25:39 字數 1089 閱讀 3925

這篇文章主要介紹了php解析rss的方法,例項分析了php解析rss的原理與xml檔案的操作技巧,需要的朋友可以參考下

1. php**如下:

複製** **如下:

require "xml/rss.php";

$rss = new xml_rss("");

$rss->parse();

foreach($rss->getitems() as $item) {

print_r($item);

2. rss.php**如下:

複製** **如下:

$database =  "nameofthedatabase";

$dbconnect = mysql_pconnect(localhost, dbuser, dbpassword);

mysql_select_db($database, $dbconnect);

$query = "select link, headline, description from `headlines` limit 15";

$result = mysql_query($query, $dbconnect);

while ($line = mysql_fetch_assoc($result))

$return = $line;

$now = date("d, d m y h:i:s t");

$output = "<?xml version=\"1.0\"?>

our demo rss

a test rss

en-us

$now

$now

[email protected]

[email protected]

foreach ($return as $line)

$output .= "".htmlentities($line['headline'])."

".htmlentities($line['link'])."

".htmlentities(strip_tags($line['description']))."

$output .= "";

echo $output;

php rss操作,用PHP解析RSS源

我需要從大約500個url聚合rss內容,而我試圖從這些url獲取內容時,出現了超時 記憶體耗盡錯誤 我嘗試使用 pie庫 是否有任何方法 想法快速從批量 中提取內容?我如何每次都得到新鮮的內容?require once include pie.inc urllist array feed new ...

很好用的php rss解析類

日期格式太多,除了php中的strtotime 函式能夠轉化的,我另外加了乙個格式的識別,其他的未寫。function mystrtotime time d dt d d d d d time,result if curtime strtotime time return curtime funct...

PHP 範圍解析操作符, call ,

echo 範圍解析操作符 的使用 echo 在類的內部使用 echo class foo public function call name params public function invoke name params func class myclass extends foo const ...