pusatdata

Cara Mengecilkan Awalan Date Time

Dec 29th, 2021 (edited)
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. sumber:
  2. https://kriesi.at/support/topic/tranlating-month-in-date-format-to-lowercase/
  3.  
  4. GUNAKAN CSS:
  5.  
  6. .date-container, .news-time, .widget_archive a {
  7. text-transform: lowercase;
  8. }
  9.  
  10. -----------ATAU---------------------
  11.  
  12. html[lang="id-ID"] .date-container,html[lang="id-ID"] .news-time,html[lang="id-ID"] .widget_archive a {
  13. text-transform: lowercase !important;
  14. }
  15.  
  16.  
  17. GUNAKAN KODE:
  18. <?php
  19. $str = "Mary Had A Little Lamb and She LOVED It So";
  20. $str = strtolower($str);
  21. echo $str; // Prints mary had a little lamb and she loved it so
  22. ?>
  23.  
Add Comment
Please, Sign In to add comment