Created
December 3, 2017 02:27
-
-
Save johnabela/040ab3f827cef8e4ff4f53a4b0b52cde to your computer and use it in GitHub Desktop.
Acquire the stream path of a .pls file
This file contains 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
// | |
// | |
/////////////////////////////////////////////////////////////////////// | |
// pls_GetStreamPath() | |
// | |
// - Description: | |
// Acquire the stream path of a .pls file | |
// | |
// - Usage: | |
// $streamPath = pls_GetStreamPath($uri); | |
// | |
// - Author: | |
// John B. Abela <[email protected]> | |
// | |
// - History: | |
// 12/2/2017 6:25 PM - Created | |
/////////////////////////////////////////////////////////////////////// | |
function pls_GetStreamPath($uri) { | |
// | |
$file = new SplFileObject($uri); | |
// | |
while (!$file->eof()) { | |
// | |
if ( substr($file->fgets(), 0, strlen('File1=') ) === 'File1=') { | |
// | |
return trim(str_replace('File1=','',$file->fgets())); | |
break; | |
// | |
} | |
// | |
} | |
// | |
$file = null; | |
// | |
} | |
// |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment