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

Source for file listSongs.php

Documentation is available at listSongs.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.  
  7.  
  8. //Search for songs by the Artist "Modest Mouse"
  9. $dump $MPD_DB->find(array('Artist' => 'Goldfinger'));
  10. echo '<ol>';
  11. foreach ($dump as $song{
  12.     echo '<li>'.$song['Title'].'</li>';
  13. }
  14. echo '</ol>';
  15. ?>

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