Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

chardet(1) [debian man page]

CHARDET(1)							   User Commands							CHARDET(1)

NAME
chardet - universal character encoding detector SYNOPSIS
chardet [options] [file ...] DESCRIPTION
Report heuristically-detected character encoding for each file. For every specified file (defaulting to stdin if no files are specified), reads and determines the character encoding of the file content. Reports the name and confidence level for each file's detected character encoding. OPTIONS
-h, --help show this help message and exit SEE ALSO
/usr/share/doc/python-chardet/index.html AUTHOR
chardet module was written by Mark Pilgrim <mark@diveintomark.org> chardet script was written by Ben Finney <ben+python@benfinney.id.au> This manual page was written by Piotr Oarowski <piotr@debian.org>, for the Debian project (but may be used by others). chardet 2.0.1 November 2009 CHARDET(1)

Check Out this Related Man Page

MB_INTERNAL_ENCODING(3) 						 1						   MB_INTERNAL_ENCODING(3)

mb_internal_encoding - Set/Get internal character encoding

SYNOPSIS
mixed mb_internal_encoding ([string $encoding = mb_internal_encoding()]) DESCRIPTION
Set/Get the internal character encoding PARAMETERS
o $encoding -$encoding is the character encoding name used for the HTTP input character encoding conversion, HTTP output character encoding conversion, and the default character encoding for string functions defined by the mbstring module. You should notice that the internal encoding is totally different from the one for multibyte regex. RETURN VALUES
If $encoding is set, then Returns TRUE on success or FALSE on failure. In this case, the character encoding for multibyte regex is NOT changed. If $encoding is omitted, then the current character encoding name is returned. EXAMPLES
Example #1 mb_internal_encoding(3) example <?php /* Set internal character encoding to UTF-8 */ mb_internal_encoding("UTF-8"); /* Display current internal character encoding */ echo mb_internal_encoding(); ?> SEE ALSO
mb_http_input(3), mb_http_output(3), mb_detect_order(3), mb_regex_encoding(3). PHP Documentation Group MB_INTERNAL_ENCODING(3)
Man Page