Articles → PHP → Strtolower Function In Php
Strtolower Function In Php
Purpose
Example
<!DOCTYPE html>
<html>
<body>
<?php
// Calling the method strtolower
echo strtolower("This is the LINE with ALL CAPS.");
?>
</body>
</html>
Output
Click to Enlarge