getid3_lib::iconv_fallback_iso88591_utf16le

Advertisement

Summery Summery

ISO-8859-1 => UTF-16LE

Syntax Syntax

getid3_lib::iconv_fallback_iso88591_utf16le( string $string, bool $bom = false )

Parameters Parameters

$string

(Required)

$bom

(Optional)

Default value: false

Return Return

(string)

Source Source

File: wp-includes/ID3/getid3.lib.php

			$newcharstring .= "\xFF\xFE";
		}
		for ($i = 0; $i < strlen($string); $i++) {
			$newcharstring .= $string[$i]."\x00";
		}
		return $newcharstring;
	}

	/**
	 * ISO-8859-1 => UTF-16LE (BOM)

Advertisement

Advertisement

Leave a Reply