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 capitalize all strings in php

2025-03-04 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

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

This article mainly introduces how php capitalizes all the strings. It is very detailed and has a certain reference value. Friends who are interested must finish it!

Php converts all strings to uppercase: 1, create a PHP sample file; 2, define variables to be converted; 3, convert all characters of incoming character parameters to uppercase through "strtoupper ($str);" and return the string in uppercase.

This article operating environment: Windows7 system, PHP7.1 version, Dell G3 computer.

Convert characters to uppercase:

Strtoupper ():

This function, contrary to the strtolower function, converts all the characters of the passed character parameters to uppercase and returns the string in uppercase. The usage is the same as strtolowe ().

The code is as follows

$str = "Mary Had A Little Lamb and She LOVED It So"; $str = strtoupper ($str); echo $str; / / print MARY HAD A LITTLE LAMB AND SHE LOVED IT SO? >

Related introduction:

Strtolower (): this function converts all characters of the passed string parameter to lowercase and returns the string in lowercase.

The above is all the contents of the article "how php capitalizes all strings". Thank you for reading! Hope to share the content to help you, more related knowledge, welcome to follow the industry information channel!

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