getid3_asf::TrimConvert() – Remove terminator 00 00 and convert UTF-16LE to Latin-1.
You appear to be a bot. Output may be restricted
Description
Remove terminator 00 00 and convert UTF-16LE to Latin-1.
Usage
$string = getid3_asf::TrimConvert( $string );
Parameters
- $string
- ( string ) required –
Returns
string
Source
File name: wordpress/wp-includes/ID3/module.audio-video.asf.php
Lines:
1 to 3 of 3
public static function TrimConvert($string) { return trim(getid3_lib::iconv_fallback('UTF-16LE', 'ISO-8859-1', self::getid3_asf::TrimTerm($string)), ' '); }