Home
last modified time | relevance | path

Searched refs:ArrayPath (Results 1 – 3 of 3) sorted by relevance

/plugin/jukebox/id3/
H A Dgetid3.lib.php470 function CreateDeepArray($ArrayPath, $Separator, $Value) { argument
477 while ($ArrayPath && ($ArrayPath{0} == $Separator)) {
478 $ArrayPath = substr($ArrayPath, 1);
480 if (($pos = strpos($ArrayPath, $Separator)) !== false) {
481 …$ReturnedArray[substr($ArrayPath, 0, $pos)] = getid3_lib::CreateDeepArray(substr($ArrayPath, $pos …
483 $ReturnedArray[$ArrayPath] = $Value;
/plugin/jplayer/vendor/james-heinrich/getid3/getid3/
H A Dgetid3.lib.php654 * @param string $ArrayPath
660 public static function CreateDeepArray($ArrayPath, $Separator, $Value) { argument
667 $ArrayPath = ltrim($ArrayPath, $Separator);
668 if (($pos = strpos($ArrayPath, $Separator)) !== false) {
669 …$ReturnedArray[substr($ArrayPath, 0, $pos)] = self::CreateDeepArray(substr($ArrayPath, $pos + 1), …
671 $ReturnedArray[$ArrayPath] = $Value;
/plugin/jplayer/vendor/james-heinrich/getid3/demos/
H A Ddemo.mp3header.php1064 function CreateDeepArray($ArrayPath, $Separator, $Value) { argument
1071 while ($ArrayPath[0] == $Separator) {
1072 $ArrayPath = substr($ArrayPath, 1);
1074 if (($pos = strpos($ArrayPath, $Separator)) !== false) {
1075 …$ReturnedArray[substr($ArrayPath, 0, $pos)] = CreateDeepArray(substr($ArrayPath, $pos + 1), $Separ…
1077 $ReturnedArray["$ArrayPath"] = $Value;