🎉 Added files
This commit is contained in:
37
mania_tracklist.php
Normal file
37
mania_tracklist.php
Normal file
@ -0,0 +1,37 @@
|
||||
<?
|
||||
// this file is used by ManiaDrive to get
|
||||
// track list from CQFD Corp website.
|
||||
require("rayphp/libfile.php");
|
||||
|
||||
$list="";
|
||||
$nl="";
|
||||
|
||||
|
||||
$ok=(integer)http_test(); // R3S function
|
||||
if(!$ok)
|
||||
{
|
||||
// network unavailable, read from disk
|
||||
$list=file_get_contents("mania_tracklist.txt")."";
|
||||
//var_dump($list);
|
||||
die("Internet connection unavailable.");
|
||||
}
|
||||
|
||||
$url="http://maniadrive.cqfd-corp.org/score/list.php";
|
||||
$file=http_download($url);
|
||||
|
||||
$file=explode("\n", $file);
|
||||
|
||||
foreach($file as $t)
|
||||
if($t!="")
|
||||
{
|
||||
$list.=$nl.trim($t);
|
||||
$nl="\n";
|
||||
}
|
||||
|
||||
// save list to disk
|
||||
$fp=fopen("mania_tracklist.txt","wb");
|
||||
fwrite($fp,$list);
|
||||
fclose($fp);
|
||||
|
||||
//var_dump($list);
|
||||
?>
|
Reference in New Issue
Block a user