PHP 从del.icio.us链接生成blogroll

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP 从del.icio.us链接生成blogroll相关的知识,希望对你有一定的参考价值。

<?php
$username   = 'your_username';
$password   = 'your_password';
$cache_file = '/tmp/blogroll.xml';
 
// check for updates to del.icio.us account
$update = simplexml_load_file("https://{$username}:{$password}@api.del.icio.us/v1/posts/update");
 
if (strtotime($update['time']) > filemtime($cache_file))
{
    // del.icio.us has been updated since last cache; recache
    $data = file_get_contents("https://{$username}:{$password}@api.del.icio.us/v1/posts/all?tag=blogroll");
    file_put_contents($cache_file, $data);
}
 
// read links from cached del.icio.us data
$blogroll = simplexml_load_file($cache_file);
 
foreach ($blogroll->post as $blog)
{
    echo '<a href="' . htmlentities($blog['href']) . '">';
    echo htmlentities($blog['description']);
    echo "</a><br />\n";
}
?>

以上是关于PHP 从del.icio.us链接生成blogroll的主要内容,如果未能解决你的问题,请参考以下文章

得到Del.icio.us公司来自搜索的链接

JavaScript del.icio.us Bookmarklet

JavaScript del.icio.us历史书签

在Python3.5中使用 The del.icio.us API

轻松地播放mp3文件直接在您的网站或博客使用del.icio.us公司戏耍者

JavaScript 使用del.icio.us PlayTagger直接在您的网站或博客上轻松播放mp3文件