convert the string to lowercase, calculate the string length, get the first letter of the string, convert the first letter to uppercase, get the rest of the string, return the string converted to sentence case.
Chuyển toàn bộ chữ in hoa thành chữ thường và viết hoa chữ cái đầu tiên trong câu văn. Dưới đây là đoạn mã PHP Function để thực hiện chuyển đổi.
function sentence_case( $string ) { $string = mb_strtolower( $string, 'UTF-8' ); //convert the string to lowercase $string_len = mb_strlen( $string, 'UTF-8' ); //calculate the string length $first_letter = mb_substr( $string, 0, 1, 'UTF-8' ); //get the first letter of the string $first_letter = mb_strtoupper( $first_letter, 'UTF-8' ); //convert the first letter to uppercase $rest_of_string = mb_substr( $string, 1, $string_len, 'UTF-8' ); //get the rest of the string return $first_letter . $rest_of_string; //return the string converted to sentence case }
Tagged with: chuyển chữ in hoa thành chữ thường, convert the first letter to uppercase, convert the string to lowercase
Code fake php 100 điểm Google Page Speed Insights cho Nodejs if (req.get('User-Agent').includes('Lighthouse')) { return...
Dưới đây là code để bạn gắn vào website, có thể gắn vào Wordpress hoặc các mã nguồn khác nếu bạn thấy phù hợp....
Để dễ hơn trong việc gắn thêm nút mở popup thêm ảnh vào hay upload ảnh avatar trực tiếp trên thư viện wordpress như...
Hôm nay mình mới nghịch có một đoạn code copy bên nước ngoài, chia sẻ cho AE. Chống copy nội dung của website khi bôi...
Gắn code nút hotline, nút gọi có cả icon cho website. Tham khảo thêm một hotline khác : Gắn hỗ trợ Hotline Zalo Fanpage...
Gắn code nút hotline, nút gọi có cả icon cho wordpress flatsome. Tham khảo thêm một hotline khác : Gắn hỗ trợ Hotline Zalo...
Bình luận bài viết
Đăng nhập để bình luận và xem các bình luận khác.