This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Wandelt geladene Datensätze so um, dass sie assoziativ über die ID zugreifbar sind. | |
* Welche ID es ist, wird mit dem Parameter $key_field_name festgelegt | |
* $flat = true bewirkt, dass Einträge zu $return[$id] hinzugefügt werden (zB $return[$id][0] und $return[$id][1], usw). | |
* | |
* @param array $rows | |
* @param string $key_field_name | |
* @param string $flat_field_name String oder Array von Strings (PM, RH seit 26.03.2014) | |
* @return array |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//ABC JAZZ | |
//mp3: "http://listen.radionomy.com/abc-jazz" | |
//FRISKY FM | |
//mp3: "http://scfire-mtc-aa02.stream.aol.com:80/stream/1015" | |
http://stream2.friskyradio.com:8000/frisky_mp3_hi | |
http://chill.friskyradio.com/friskychill_mp3_high | |
//WWOZ | |
//mp3: "http://wwoz-sc.streamguys.com/wwoz-hi.mp3" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Simple Usage: preprint($mixed) will output everything, that can be outputtet by PHP in a formatted way using the html pre-tag. | |
* You can use __FILE__.__LINE__ as second parameter, to see, where the ouput was generated | |
* | |
* I always include this function in all of my projects because i output a lot of debugging-data. And i don't want to write those html tags everytime :-) | |
* | |
* @author: Robert Heine | |
* @link: www.joomla-jquery-internet.de | |
* @changes: RH, 21.08.2014: Ergänzung um den Backtrace, was $where überflüßig macht. | |
* RH, 29.05.2015: Ergänzung wegen ENVIRONMENT. Soll NUR im DEV-Modus etwas ausgeben. |