使数组中的第一个字符大写

2022-08-30 17:22:57

我试图让PHP数组中的所有第一个字符都是大写的。

PHP 代码:

<?php
$ordlista = file_get_contents('C:/wamp/www/bilder/filmlista.txt');

$ord = explode("\n", $ordlista);

sort($ord,SORT_STRING);

foreach ($ord as $key => $val) {
    echo $val."<br/>";
}
?>

答案 1
$ord = array_map('ucfirst', $ord);

答案 2
$ord=array_map(function($word) { return ucfirst($word); }, $ord);