Net_MPD
[ class tree: Net_MPD ] [ index: Net_MPD ] [ all elements ]

Source for file listArtists.php

Documentation is available at listArtists.php

  1. <?php
  2. ini_set('display_errors'true);
  3. error_reporting(E_ALL | E_STRICT);
  4. require_once 'Net/MPD.php';
  5. $MPD_DB Net_MPD::factory('Database');
  6. var_dump($MPD_DB);
  7. $dump $MPD_DB->getMetaData('Artist');
  8. echo '<ol>';
  9. foreach ($dump as $artist{
  10.     echo '<li>'.$artist.'</li>';
  11. }
  12. echo '</ol>';
  13. ?>

Documentation generated on Mon, 11 Mar 2019 15:21:08 -0400 by phpDocumentor 1.4.4. PEAR Logo Copyright © PHP Group 2004.