strtolower
是 PHP 中的一個(gè)字符串函數(shù),用于將給定字符串中的所有大寫(xiě)字母轉(zhuǎn)換為小寫(xiě)字母
example.txt
的文件,其中包含以下內(nèi)容:HeLLo WoRLD!
lowercase_example.txt
的文件,其中包含以下內(nèi)容:<?php
// 打開(kāi)原始文件
$inputFile = 'example.txt';
$outputFile = 'lowercase_example.txt';
$content = file_get_contents($inputFile);
// 使用 strtolower 函數(shù)將大寫(xiě)字母轉(zhuǎn)換為小寫(xiě)字母
$lowercaseContent = strtolower($content);
// 將轉(zhuǎn)換后的內(nèi)容寫(xiě)入新文件
file_put_contents($outputFile, $lowercaseContent);
?>
example.txt
和 lowercase_example.txt
文件位于同一目錄中,然后在 Web 服務(wù)器或命令行中運(yùn)行上述 PHP 代碼。lowercase_example.txt
文件現(xiàn)在應(yīng)包含以下內(nèi)容:hello world!
這就是如何在文件中應(yīng)用 PHP 的 strtolower
函數(shù)。