⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 8-27.php

📁 php 和 ajax 开发的一些资料
💻 PHP
字号:
<?php
echo "<html>";								//输出标准HTML内容
echo "<head>";
echo "<title>";
echo "字符串的大小写转换操作";
echo "</title>";
echo "</head>";
echo "<body>";
$string="welcom to BEI JING";					//定义字符串
echo "\$string的原始内容为:".$string;
echo "<p>";
$result1=strtolower($string);
echo "全部转换为小写后的内容为:".$result1;		//输出转换结果
echo "<p>";
$result2=strtoupper($string);
echo "全部转换为大写后的内容为:".$result2;		//输出转换结果
echo "<p>";
$result3=ucfirst($string);
echo "首字母转换为大写后的内容为:".$result3;	//输出转换结果
echo "<p>";
$result4=ucwords($string);
echo "单词首字符转换为大写后内容为:".$result4;	//输出转换结果
echo "</body>";
echo "</html>";
?>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -