Skip to content

Instantly share code, notes, and snippets.

View LogIN-'s full-sized avatar
:electron:
Working from space

LogIN-

:electron:
Working from space
  • WWW
View GitHub Profile
@LogIN-
LogIN- / Yandex Music Grub
Last active September 12, 2015 08:01
download music from http://music.yandex.ru
<?php
class YandexMusic {
public static function getAlbumInfo($url) {
$req = file_get_contents($url);
$data = preg_match('/var\s+Mu\s+=\s+(.+?);\s+<\/script>/is', $req, $matches);
$data = json_decode($matches[1], true);
return $data['pageData'];
}