Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to convert lowercase to uppercase in php

2025-02-24 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/01 Report--

This article mainly introduces "how to convert lowercase to uppercase in php". In daily operation, I believe that many people have doubts about how to convert lowercase to uppercase in php. The editor consulted all kinds of materials and sorted out simple and easy-to-use methods of operation. I hope it will be helpful to answer the question of "how to convert lowercase to uppercase in php". Next, please follow the editor to study!

Php first letter lowercase to uppercase function: 1, ucfirst () function, the first letter of the string can be converted to uppercase, syntax "ucfirst ($str)"; 2, ucwords () function, the first letter of each word in the string can be converted to uppercase, syntax "ucwords ($str)".

Operating environment of this tutorial: windows7 system, PHP7.1 version, DELL G3 computer

There are two types of lowercase to uppercase functions in php:

The ucfirst () function, which converts the first letter of a string to uppercase

The ucwords () function converts the first letter of each word in a string to uppercase

1. Ucfirst () function

The ucfirst () function converts the first character in a string to uppercase.

Example:

2. Ucwords () function

The ucwords () function converts the first character of each word in a string to uppercase.

Syntax:

Ucwords ($string [, $delimiters = "\ t\ r\ n\ f\ v"])

Where $string is the string to be converted, and $delimiters is an optional parameter to represent the word separator. The default is space character, tab character, line feed character, carriage return character, horizontal line, and vertical bar.

Example:

Output:

Hello Worldwide Hello | Worldwide Hello | World! At this point, the study of "how to change lowercase to uppercase in php" is over. I hope to be able to solve your doubts. The collocation of theory and practice can better help you learn, go and try it! If you want to continue to learn more related knowledge, please continue to follow the website, the editor will continue to work hard to bring you more practical articles!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report