WeberDev.com PHP and MySQL Code

LOG IN
BEGINNER GUIDES  |  PHP CLASSES  |  CODE SEARCH  |  ARTICLES SEARCH  |  PHP FORUMS  |  PHP MANUAL  |  PHP FUNCTIONS LIST  |  WEB SITE TEMPLATES
Start typing to search for PHP and MySQL Code Snippets and Articles Search
Submit a code Example / Snippet Submit Your Code
Search Engine Optimization Monitor SEO Monitor
Web Site UpTime Monitor UpTime Monitor
WeberDev's Monthly code contest PHP Code Contest
Your Personal Examples List My Favorite Examples
Your Personal Articles List My Favorite Articles
Edit Account Info Update Your Profile
PHP Code Search
Web Development Forums
Learn MySQL Playing Trivia
PHPBB2 Templates
Web Development Index
Web Development Resources
Web Development Content
PHPClasses
PHP Editor
PHP Jobs
Vision.To Design
Ajax Tutorials
PHP Programming Help
PHP/MySQL Programming
Webmaster Resources
Webmaster Forum
XML meta language
website builder
Mobile Dev World
Set/Get character encoding detection order

mb_detect_order

(PHP 4 >= 4.0.6, PHP 5)

mb_detect_orderSet/Get character encoding detection order

Description

mixed mb_detect_order ([ mixed $encoding_list ] )

Sets the automatic character encoding detection order to encoding_list .

Parameters

encoding_list

encoding_list is an array or comma separated list of character encoding. ("auto" is expanded to "ASCII, JIS, UTF-8, EUC-JP, SJIS")

If encoding_list is omitted, it returns the current character encoding detection order as array.

This setting affects mb_detect_encoding() and mb_send_mail().

mbstring currently implements the following encoding detection filters. If there is an invalid byte sequence for the following encodings, encoding detection will fail.

UTF-8, UTF-7, ASCII, EUC-JP,SJIS, eucJP-win, SJIS-win, JIS, ISO-2022-JP

For ISO-8859-*, mbstring always detects as ISO-8859-*.

For UTF-16, UTF-32, UCS2 and UCS4, encoding detection will fail always.

Example #1 Useless detect order example

 ; Always detect as ISO-8859-1 detect_order = ISO-8859-1, UTF-8  ; Always detect as UTF-8, since ASCII/UTF-7 values are  ; valid for UTF-8 detect_order = UTF-8, ASCII, UTF-7 

Return Values

Returns TRUE on success or FALSE on failure.

Examples

Example #2 mb_detect_order() examples

<?php
/* Set detection order by enumerated list */
mb_detect_order("eucjp-win,sjis-win,UTF-8");

/* Set detection order by array */
$ary[] = "ASCII";
$ary[] = "JIS";
$ary[] = "EUC-JP";
mb_detect_order($ary);

/* Display current detection order */
echo implode(", "mb_detect_order());
?>

See Also


How to control the number of decimal places when outputting numbers.
Categories : PHP, Strings, Variables
Stepping through a numbered array with each() and list()
Categories : PHP, Arrays
A simple and fast calendar combining PHP and tables. Use this as a base for applications in which a calendar is needed.
Categories : Date Time, PHP, Complete Programs, Calendar



Dynamic thumbnails using the GD image library
Categories : PHP, GD image library, Graphics
Creates a CAPTCHA image in PHP, which displays 5 numbers stored in a session.
Categories : PHP, GD image library, Form Processing, Security
How to get the number of seconds since 01/01/1970 (Timestamp) from MSSql?
Categories : MS SQL Server
Adding dashes to credit card numbers
Categories : Strings, Credit Cards, PHP
How to create a file with any number of UniqIDs (GUIDs)
Categories : PHP, Security
Count how many weeks in the month have a specified day, such as Mon, Tue, etc. Var avail - number of days - first day name of the month, occurrences of Sun, occurrences of Mon, etc. Allows you to calculate number of working hours exclude Holidays.
Categories : Calendar, Date Time, PHP, Databases, MySQL
Adds dashes to a CC number. Was from this site, but now it works.
Categories : PHP, Credit Cards
Embed Videos
Categories : PHP, HTML and PHP, Beginner Guides
Validate serial numbers of Euro bank notes with PHP
Categories : PHP, Security, Algorithms
Shows how to parse a file and how to use the new __get magic method (PHP5). The provided class can be used in any unix-like environment to retrieve user information (you must have access to /etc/passwd in order to work).
Categories : PHP, PHP Classes, Filesystem
A very useful function to display text on specified number of characters.
Categories : PHP, Strings