Home  >  Article  >  Backend Development  >  How to use php lcfirst function

How to use php lcfirst function

青灯夜游
青灯夜游Original
2019-05-25 16:04:593142browse

lcfirst() function is a built-in function of PHP, used to convert the first character in a string to lowercase. The syntax is lcfirst(string), which accepts a string as a parameter and returns the converted string.

How to use php lcfirst function

php How to use the lcfirst() function?

php The lcfirst() function converts the first character in the string to lowercase.

Basic syntax:

lcfirst ( string)

Parameters: lcfirst() function only accepts one required parameter string, which specifies the string to be converted.

Return value: Returns the converted string, that is, a string with the first letter lowercase.

Let’s take a look at how to use the php lcfirst() function through an example.

Example:

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

Output:

hello world!

The above is the detailed content of How to use php lcfirst function. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn