recent searches:
include functions ,
variable functions ,
post functions...
If you are new to PHP or just need to refresh your skills, this is the place to start. This series of tutorials will give you the basic knowledge you will need to create a simple PHP website.
PHP is a reflective programming language originally designed for producing dynamic web pages.[1] PHP is used mainly in server-side scripting, but can be used from a command line interface or in standalone graphical applications. Textual User Interfaces can also be created using ncurses.
mb_convert_case() returns case folded version of
string converted in the way specified by
mode.
mode can be one of MB_CASE_UPPER, MB_CASE_LOWER
or MB_CASE_TITLE.
encoding specifies the encoding of
str; if omitted, the internal character encoding
value will be used.
The return value is str with the appropriate case folding applied.
By contrast to the standard case folding functions such as strtolower() and strtoupper(), case folding is performed on the basis of the Unicode character properties. Thus the behaviour of this function is not affected by locale settings and it can convert any characters that have 'alphabetic' property, such as A-umlaut (Ä).
For more information about the Unicode properties, please see http://www.unicode.org/unicode/reports/tr21/.
See also mb_strtolower(), mb_strtoupper(), strtolower(), strtoupper(), ucfirst() and ucwords()
Another Useful functions:
function.mb-convert-variables | function.mb-convert-kana | function.mb-convert-encoding | function.mb-convert-case |
PHP is a widely-used general-purpose scripting language that is especially suited for Web development and can be embedded into HTML. If you are new to PHP and want to get some idea of how it works, try the introductory tutorial. After that, check out the online manual, and the example archive sites and some of the other resources available in the links section.