<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
 <html>
  <head>
   <title> strtolower.php </title>
   <meta charset="UTF-8">
   <meta name="Author" content="">
   <meta name="Keywords" content="">
   <meta name="Description" content="">
  </head> <body>
<?php
 $str = "I want To FLY";
 echo $str;
 echo '<br>';
 $str2 = strtolower($str);
 echo $str;
 echo '<br>';
 echo $str2;
 ?>
  </body>
 </html>
I want To FLY
 I want To FLY
 i want to fly 1.字符串大小写转换函数
 (1)strtolower()函数。该函数将传入的字符串参数所有的字符都转换成小写,并以小写形式放回这个字符串。该函数声明如下:
 string strtolower(string str)