Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- sumber:
- https://kriesi.at/support/topic/tranlating-month-in-date-format-to-lowercase/
- GUNAKAN CSS:
- .date-container, .news-time, .widget_archive a {
- text-transform: lowercase;
- }
- -----------ATAU---------------------
- html[lang="id-ID"] .date-container,html[lang="id-ID"] .news-time,html[lang="id-ID"] .widget_archive a {
- text-transform: lowercase !important;
- }
- GUNAKAN KODE:
- <?php
- $str = "Mary Had A Little Lamb and She LOVED It So";
- $str = strtolower($str);
- echo $str; // Prints mary had a little lamb and she loved it so
- ?>
Add Comment
Please, Sign In to add comment