getid3_lib::iconv_fallback_iso88591_utf16be

Advertisement

Summery Summery

ISO-8859-1 => UTF-16BE

Syntax Syntax

getid3_lib::iconv_fallback_iso88591_utf16be( 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 .= "\xFE\xFF";
		}
		for ($i = 0; $i < strlen($string); $i++) {
			$newcharstring .= "\x00".$string[$i];
		}
		return $newcharstring;
	}

	/**
	 * ISO-8859-1 => UTF-16LE

Advertisement

Advertisement

Leave a Reply