php中強制字母轉換大小寫的方法有哪些

2020-07-16 10:05:53

第一個單詞首字母變大寫:ucfirst()

<?php
$foo = 'hello world!';
$foo = ucfirst($foo);             // Hello world!
$bar = 'HELLO WORLD!';
$bar = ucfirst($bar);             // HELLO WORLD!
$bar = ucfirst(strtolower($bar)); // Hello world!
?>

第一個單詞首字母變小寫:lcfirst()

<?php
$foo = 'HelloWorld';
$foo = lcfirst($foo);             // helloWorld
$bar = 'HELLO WORLD!';
$bar = lcfirst($bar);             // hELLO WORLD!
$bar = lcfirst(strtoupper($bar)); // hELLO WORLD!
?>
以上就是php中強制字母轉換大小寫的方法有哪些的詳細內容,更多請關注TW511.COM其它相關文章!