Skip to content

Instantly share code, notes, and snippets.

View spicydog's full-sized avatar

spicydog spicydog

View GitHub Profile
@spicydog
spicydog / anime_auto_download.php
Last active December 1, 2015 08:32
Auto anime download with aria2c and php from horriblesubs.info
<?php
$keyword = 'one piece';
$keyword = 'fairy tail';
function subBetweenStrings($string, $begin, $end) {
if($begin==='')
return substr( $string, 0, strpos($string,$end) );
if($end==='')
return substr($string, strpos($string, $begin)+strlen($begin));