Q:

How to convert a string to lowercase in PHP

0

How to convert a string to lowercase in PHP

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

Use the PHP strtolower() function

You can use the PHP strtolower() function to convert a string to lowercase.

Let's check out the following example to understand how this function actually works:

<?php
$my_str = 'The Quick Brown Fox Jumps Over The Lazy Dog.';
echo strtolower($my_str);
?>

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now