strtolower
是 PHP 中的一个字符串函数,用于将给定字符串中的所有大写字母转换为小写字母
example.txt
的文件,其中包含以下内容:HeLLo WoRLD!
lowercase_example.txt
的文件,其中包含以下内容:<?php
// 打开原始文件
$inputFile = 'example.txt';
$outputFile = 'lowercase_example.txt';
$content = file_get_contents($inputFile);
// 使用 strtolower 函数将大写字母转换为小写字母
$lowercaseContent = strtolower($content);
// 将转换后的内容写入新文件
file_put_contents($outputFile, $lowercaseContent);
?>
example.txt
和 lowercase_example.txt
文件位于同一目录中,然后在 Web 服务器或命令行中运行上述 PHP 代码。lowercase_example.txt
文件现在应包含以下内容:hello world!
这就是如何在文件中应用 PHP 的 strtolower
函数。