Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
只是想知道是否有人有示例代码来返回 reddit 的前 25 个链接(使用 PHP)。在 JSON 或 XML 中。我无法绕开 API ......而且很少使用 python。
$array = (array) json_decode(file_get_contents("http://www.reddit.com/.json"));
这将返回一个 PHP 数组,其中包含来自首页的所有数据。您可以使用简单的 while() 循环来限制显示的数量。
这很简单,因为您有上面的数组,因为您所要做的就是逐步完成它。