How to convert English to lowercase in php

藏色散人
Release: 2023-03-12 15:04:01
Original
2147 people have browsed it

How to convert English to lowercase in php: 1. Use the lcfirst() function to change the first letter of the first English word to lowercase; 2. Use the strtolower() function to change all letters to lowercase.

How to convert English to lowercase in php

The operating environment of this article: windows7 system, PHP7.1 version, DELL G3 computer

How to convert English to lowercase in php?

Change the first letter of the first word to lowercase: lcfirst()

The code is as follows:

Copy after login

Change all letters to lowercase: strtolower()

The strtolower() function converts a string to lowercase, and the syntax is "strtolower(string)".

Note: This function is binary safe.

Related introduction:

Convert the first letter of each word to uppercase: ucwords()

The code is as follows:

Copy after login

The first letter of the first word Change to uppercase: ucfirst()

The code is as follows:

Copy after login

Change all letters to uppercase: strtoupper()

Recommended study: "PHP Video Tutorial

The above is the detailed content of How to convert English to lowercase in php. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
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
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!