Latest web development tutorials
 

PHP lcfirst() Function

< PHP String Reference

Example

Convert the first character of "Hello" to lowercase:

<?php
echo lcfirst("Hello world!");
?>
Run example »

Definition and Usage

The lcfirst() function converts the first character of a string to lowercase.

Related functions:


Syntax

lcfirst(string)

Parameter Description
string Required. Specifies the string to convert

Technical Details

Return Value: Returns the converted string
PHP Version: 5.3.0+

< PHP String Reference