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
函數。