mirror of
https://github.com/php-curl-class/php-curl-class.git
synced 2026-08-30 12:14:36 +00:00
Merge branch 'examples'
* examples: Add Reddit pics example
This commit is contained in:
@@ -42,7 +42,7 @@ if (isset($_SESSION['access_token'])) {
|
||||
));
|
||||
foreach ($curl->response->data as $media) {
|
||||
echo
|
||||
'<a href="' . $media->link . '" target="blank">' .
|
||||
'<a href="' . $media->link . '" target="_blank">' .
|
||||
'<img alt="" src="' . $media->images->thumbnail->url . '" />' .
|
||||
'</a>';
|
||||
}
|
||||
|
||||
@@ -0,0 +1,28 @@
|
||||
<?php
|
||||
require '../src/Curl.class.php';
|
||||
|
||||
|
||||
$data = array();
|
||||
if (isset($_GET['after'])) {
|
||||
$data['after'] = $_GET['after'];
|
||||
}
|
||||
|
||||
$curl = new Curl();
|
||||
$curl->get('http://www.reddit.com/r/pics/top/.json', $data);
|
||||
|
||||
echo '<ul>';
|
||||
|
||||
foreach ($curl->response->data->children as $result) {
|
||||
$pic = $result->data;
|
||||
echo
|
||||
'<li>' .
|
||||
'<a href="' . $pic->url . '" target="_blank">' .
|
||||
$pic->title . '<br />' .
|
||||
'<img alt="" src="' . $pic->thumbnail . '" />' .
|
||||
'</a> ' .
|
||||
$pic->score . ' pts ' . $pic->num_comments . ' comments by ' . $pic->author .
|
||||
'</li>';
|
||||
}
|
||||
|
||||
echo '</ul>';
|
||||
echo '<a href="?after=' . $curl->response->data->after . '">Next</a>';
|
||||
Reference in New Issue
Block a user