Fungsinya untuk mengubah String menjadi huruf kecil semua
The strtolower() function converts a string to lowercase.
contoh code nya:
================================================
<?php
echo strtolower("Hello WORLD.");
?>
======================================================
Fungsi yang masih berkaitan
The strtolower() function converts a string to lowercase.
contoh code nya:
================================================
<?php
echo strtolower("Hello WORLD.");
?>
======================================================
Fungsi yang masih berkaitan
- strtoupper() - converts a string to uppercase (jadi huruf besar)
- lcfirst() - converts the first character of a string to lowercase (huruf awal jadi kecil)
- ucfirst() - converts the first character of a string to uppercase (huruf awal jadi besar)
- ucwords() - converts the first character of each word in a string to uppercase (kata pertama jadi besar)
Komentar
Posting Komentar