Advertisement
contatowellington

TOCA DA PASTA

Sep 9th, 2019
166
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. <?php
  2. $dir="audio/mp3/";
  3. $dir1=opendir($dir);
  4.  
  5. $mp3 = Array();
  6.  
  7. while( $res=readdir($dir1) ){
  8. $tipo=explode('.',$res);
  9. if ( $tipo[1]=='mp3' || $tipo[1]=='MP3' ){
  10. $mp3[] = 'audio/mp3/'.$res;
  11. }
  12. }
  13. shuffle($mp3);
  14. echo implode( '|', array_slice($mp3, 0, 1));
  15. ?>
  16.  
  17. <audio controls autoplay id="myaudio">
  18. <source src="<?php echo implode( '|', array_slice($mp3, 0, 1)); ?>" type="audio/mp3">
  19. Your browse</audio>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement