溫馨提示×

php strtolower能批量轉(zhuǎn)換嗎

PHP
小樊
81
2024-11-18 21:38:23
欄目: 編程語言

是的,strtolower() 函數(shù)在 PHP 中可以批量轉(zhuǎn)換字符串。您可以使用循環(huán)遍歷數(shù)組中的每個元素并將其轉(zhuǎn)換為小寫。以下是一個示例:

<?php
$strings = array("Hello", "WORLD!", "ExaMple", "WITH", "UPPER", "AND", "LOWERCASE");

foreach ($strings as $key => $value) {
    $strings[$key] = strtolower($value);
}

print_r($strings);
?>

輸出結(jié)果:

Array
(
    [0] => hello
    [1] => world!
    [2] => example
    [3] => with
    [4] => upper
    [5] => and
    [6] => lowercase
)

在這個示例中,我們創(chuàng)建了一個包含大寫和小寫字符串的數(shù)組 $strings。然后,我們使用 foreach 循環(huán)遍歷數(shù)組中的每個元素,并使用 strtolower() 函數(shù)將其轉(zhuǎn)換為小寫。最后,我們打印出修改后的數(shù)組。

0