Skip to content

Instantly share code, notes, and snippets.

View LiamKenyon's full-sized avatar

Liam Kenyon LiamKenyon

View GitHub Profile
@LiamKenyon
LiamKenyon / IPTV M3U filter
Created May 8, 2019 14:41 — forked from andey/IPTV M3U filter
Filter out the garbage channels, and only show me what I want to see
<?php
// download the file
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, "<M3U_LINK>");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
$result = curl_exec($ch);
curl_close ($ch);
// write to file