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