前言
二、使用步骤
<?php //大小写转换器: $input = 'hello world'; $output = strtoupper($input); echo "大写转换器".$output;//大写转换器 echo "<br />"; $input1 = 'HELLO WORLD'; $output = strtolower($input1); echo "小写转换器".$output;//小写转换器
效果
<?php //大小写转换器: $input = 'hello world'; $output = strtoupper($input); echo "大写转换器".$output;//大写转换器 echo "<br />"; $input1 = 'HELLO WORLD'; $output = strtolower($input1); echo "小写转换器".$output;//小写转换器