php案例:大小写转换器

2023-10-16 16:18:21 浏览数 (1)

前言

大小写转换器

二、使用步骤

代码语言:javascript复制
<?php
//大小写转换器:
$input = 'hello world';
$output = strtoupper($input);
echo "大写转换器".$output;//大写转换器
echo "<br />";
$input1 = 'HELLO WORLD';
$output = strtolower($input1);
echo "小写转换器".$output;//小写转换器

效果

0 人点赞