strtolower.php : strtolower « String « PHP






strtolower.php

 
<?php
   $url = "http://WWW.EXAMPLE.COM/";
   echo strtolower($url);
?>
  
  








Related examples in the same category

1.Changing case
2.Controlling Case: string strtoupper ( string string ),string strtolower ( string str )
3.string strtolower ( string str ) returns that string entirely in lowercase characters.
4.strtolower() function converts a string to all lowercase letters.