php ucfirst() fungsi
Hasil terjemahan:
Bahasa Inggeris [fɜ:st] Amerika [fɜ:rst]
n pertama, bahagian pertama
d; . Kelas pertama; asal, paling awal, ringkasan
nombor.
php ucfirst() fungsisintaks
Fungsi: Huruf besar huruf pertama rentetan
Sintaks: ucfirst(rentetan)
Parameter:
Parameter | |
string |
🎜 Penerangan: 🎜Tukar aksara pertama dalam rentetan kepada huruf besar. 🎜
php ucfirst() fungsicontoh
<?php $i = "hello world"; $j = ucfirst($i); echo $j; ?>e
run Instance »
Klik butang" Run Instance "untuk melihat Instance Online Output:
Hello worlde
<?php echo ucfirst("hi php.cn"); ?>e
Hi php.cn