By: Manoj in PHP Tutorials on 2023年03月22日 [フレーム]
In PHP, you can convert a string to lowercase using the strtolower() function. Here is an example:
$str = "HELLO WORLD";
$str_lower = strtolower($str);
echo $str_lower; // Output: hello world
In the example above, we first define a string $str in uppercase. We then use the strtolower() function to convert it to lowercase and store the result in a new variable $str_lower. Finally, we output the lowercase string using the echo statement.
Note that strtolower() function returns a new string in lowercase and doesn't modify the original string. If you want to modify the original string, you can assign the result of strtolower() back to the original variable:
$str = "HELLO WORLD";
$str = strtolower($str);
echo $str; // Output: hello world
This policy contains information about your privacy. By posting, you are declaring that you understand this policy:
This policy is subject to change at any time and without notice.
These terms and conditions contain rules about posting comments. By submitting a comment, you are declaring that you agree with these rules:
Failure to comply with these rules may result in being banned from submitting further comments.
These terms and conditions are subject to change at any time and without notice.
Most Viewed Articles (in PHP )
PHP code to write to a CSV file from MySQL query
Send push notifications using Expo tokens in PHP
Different versions of PHP - History and evolution of PHP
PHP code to import from CSV file to MySQL
A Basic Example using PHP in AWS (Amazon Web Services)
Password must include both numeric and alphabetic characters - Magento
PHP code to write to a CSV file for Microsoft Applications
PHP convert string to lower case
Resume or Pause File Uploads in PHP
Parent: child process exited with status 3221225477 -- Restarting
Decrypting files using GnuPG (GPG) via PHP
Convert a hex string into a 32-bit IEEE 754 float number in PHP
Latest Articles (in PHP)
Send push notifications using Expo tokens in PHP
PHP convert string to lower case
A Basic Example using PHP in AWS (Amazon Web Services)
Different versions of PHP - History and evolution of PHP
PHP code to import from CSV file to MySQL
PHP code to write to a CSV file for Microsoft Applications
PHP code to write to a CSV file from MySQL query
Password must include both numeric and alphabetic characters - Magento
PHP file upload prompts authentication for anonymous users
PHP file upload with IIS on windows XP/2000 etc
Resume or Pause File Uploads in PHP
Send push notifications using Expo tokens in PHP
PHP convert string to lower case
A Basic Example using PHP in AWS (Amazon Web Services)
Different versions of PHP - History and evolution of PHP
PHP code to write to a CSV file for Microsoft Applications
PHP code to write to a CSV file from MySQL query
PHP code to import from CSV file to MySQL
Password must include both numeric and alphabetic characters - Magento
Resume or Pause File Uploads in PHP
PHP file upload prompts authentication for anonymous users
PHP file upload with IIS on windows XP/2000 etc
© 2023 Java-samples.com
Tutorial Archive: Data Science React Native Android AJAX ASP.net C C++ C# Cocoa Cloud Computing EJB Errors Java Certification Interview iPhone Javascript JSF JSP Java Beans J2ME JDBC Linux Mac OS X MySQL Perl PHP Python Ruby SAP VB.net EJB Struts Trends WebServices XML Office 365 Hibernate
Latest Tutorials on: Data Science React Native Android AJAX ASP.net C Cocoa C++ C# EJB Errors Java Certification Interview iPhone Javascript JSF JSP Java Beans J2ME JDBC Linux Mac OS X MySQL Perl PHP Python Ruby SAP VB.net EJB Struts Cloud Computing WebServices XML Office 365 Hibernate