-1

I'd like to get the song or program name details from a particular online radio/tv broadcast url. This url could be a file with *.pls extension or in form of mms protocol.

Is there any web request technic, library for php or any popular language?

Jonas
  • 121,568
  • 97
  • 310
  • 388
Serhat Koroglu
  • 1,263
  • 4
  • 19
  • 41

1 Answers1

0

i am not so sure that this answer will help you, but it can lead you to solution

$url    = parse_url(URL);

abouve url will give you an array of the following format

Array

( [scheme] => http [host] => eksensc.radyotvonline.com [path] => /listen.pls )

you can get $url['path'] from that array,

Hope it hepls ! Thanks

jugnu
  • 141
  • 6