Skip to content
This repository has been archived by the owner on Jan 12, 2023. It is now read-only.

Latest commit

 

History

History
15 lines (12 loc) · 233 Bytes

README.md

File metadata and controls

15 lines (12 loc) · 233 Bytes

hoerapi.php

(Inspired by https://github.com/hoersuppe/hoerapi.py)

Usage

<?php
require "api.php";
use HoerAPI\HoerAPI;

$podcasts = HoerAPI::getPodcasts();
foreach ($podcasts as $pod) {
    echo $pod->slug . "<br />";
}