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_strtoupper() returns str
with all alphabetic characters converted to uppercase.
encoding specifies the encoding of
str; if omitted, the internal character encoding
value will be used.
By contrast to strtoupper(), 'alphabetic' is determined by 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 strtoupper(), mb_strtolower() and mb_convert_case().
Another Useful functions:
function.mb-strwidth | function.mb-strtoupper | function.mb-strtolower | function.mb-strstr | function.mb-strrpos | function.mb-strripos | function.mb-strrichr | function.mb-strrchr | function.mb-strpos | function.mb-strlen | function.mb-stristr | function.mb-stripos | function.mb-strimwidth | function.mb-strcut |
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.