PHP Classes

File: readme.txt

Recommend this page to a friend!
  Classes of Axel Hahn   PHP Icecast Stats   readme.txt   Download  
File: readme.txt
Role: Documentation
Content type: text/plain
Description: readme txt
Class: PHP Icecast Stats
Retrieve and parse the status of a Icecast server
Author: By
Last change: init
init
Date: 7 years ago
Size: 970 bytes
 

Contents

Class file image Download
############################################################################### icecaststatus.class.php ############################################################################### AXELS ICECAST STATUS PARSER V1.0 http://www.axel-hahn.de/php_icecaststatus License: GNU/GPL v3 2013-11-14 1.0 first time in the wild. -------------------------------------------------------------------------------- ############################################################################### --- typical usage: $o = new IcecastStatus("http://[your-icecast-server]/status.xsl"); var_dump($o->getMounts()); // lists all mountpoints $a = $o->getData(); // show all details of all mountpoints $a = $o->getData("[Name]"); // show all details of a given mountpoint see interactive demo: http://www.axel-hahn.de/srfradio/ ###############################################################################