PHPを使って、はてなブックマークの、ユーザーフィードを取得し、内容を表示します。
フィードを取得できませんでした…。
' ; } else { // HTML $html_1 = '' ; $html_2 = '' ; // チャンネル情報 $channel = (string)$obj->channel->title ; // ユーザー名 $count = $obj->channel->children( 'opensearch' , true )->totalResults ; // 総ブックマーク数 $link = (string)$obj->channel->link ; // ユーザー画面のURL // チャンネル情報のHTML $html_1 .= '' . $channel . ' (総ブックマーク数は' . $count . ')' ; // 個々のエントリーを読み込んでいく foreach( $obj->item as $item ) { // 各値の整理 $url = (string)$item->link ; // URL $date = $item->children( 'dc' , true )->date ; // エントリーの日付 $comment = ( isset($item->description) ) ? $item->description : '' ; // コメント $title = (string)$item->title ; // タイトル $tags = implode( ',' , (array)$item->children( 'dc' , true )->subject ) ; // タグ // 日付の整形 $date = date( 'Y/m/d H:i:s' , strtotime( $date ) ) ; // HTML $html_2 .= '