No cache version.

Caching disabled. Default setting for this page:enabled (code LNG204)
If the display is too slow, you can disable the user mode to view the cached version.

Rechercher une fonction PHP

lcfirst

(PHP 5 >= 5.3.0, PHP 7)

lcfirstMake a string's first character lowercase

Description

lcfirst ( string $str ) : string

Returns a string with the first character of str lowercased if that character is alphabetic.

Note that 'alphabetic' is determined by the current locale. For instance, in the default "C" locale characters such as umlaut-a (ä) will not be converted.

PHP: lcfirst - Manual Home of Manuel PHP  Contents Haut

Parameters

str

The input string.

PHP: lcfirst - Manual Home of Manuel PHP  Contents Haut

Return Values

Returns the resulting string.

PHP: lcfirst - Manual Home of Manuel PHP  Contents Haut

Examples

Example #1 lcfirst() example

<?php
$foo 
'HelloWorld';
$foo lcfirst($foo);             // helloWorld

$bar 'HELLO WORLD!';
$bar lcfirst($bar);             // hELLO WORLD!
$bar lcfirst(strtoupper($bar)); // hELLO WORLD!
?>

PHP: lcfirst - Manual Home of Manuel PHP  Contents Haut

See Also

Find a PHP function
Error Infobrol

Can not display this page of the Infobrol website

Type of error (18-01)

Unknown format specifier "&"

Please try again in a few minutes…

Return to the home page




Steph