CharConvert example

// identical encoding - end here         if ($encoding == $this->encoding) {
            return;
        }

        // loop thru array         foreach ($array as $key => $value) {

            // go recursive             if (is_array($value)) {
                $this->CharConvert($array[$key]$encoding);
            }

            // convert string             elseif (is_string($value)) {
                $array[$key] = trim(getid3_lib::iconv_fallback($encoding$this->encoding, $value));
            }
        }
    }

    /** * @return bool */
Home | Imprint | This part of the site doesn't use cookies.