Skip to content

PHP HTML แปลงภาษาอังกฤษตัวพิมพ์เล็ก ตัวพิมพ์ใหญ่ text-transform หรือ strtoupper, strtolower, ucfirst, ucwords

Naelike/PHP-Text-Transform

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 

Repository files navigation

PHP-Text-Transform

PHP HTML แปลงภาษาอังกฤษตัวพิมพ์เล็ก ตัวพิมพ์ใหญ่ text-transform หรือ strtoupper, strtolower, ucfirst, ucwords

#// strtoupper(); พิมพ์ใหญ่ทั้งหมด คือ HELLO WORLD NAELIKE
#// strtolower(); พิมพ์เล็กทั้งหมด คือ hello world naelike
#// ucfirst(); พิมพ์ใหญ่คำแรก คือ Hello world naelike
#// ucwords(); พิมพ์ใหญ่ตัวแรงของทุกคำ คือ Hello World Naelike
#// mb_strtoupper(); พิมพ์ใหญ่ทั้งหมด คือ HELLO WORLD NAELIKE (Unicode)

PHP

<?php 
  // texteng
  $texteng = 'Hello Naelike';
  // echo
  echo strtoupper($texteng).'<br>';
  echo strtolower($texteng).'<br>';
  echo ucfirst($texteng).'<br>';
  echo ucwords($texteng).'<br>';
  echo mb_strtoupper($texteng).'<br>';
?>

Developer : NaeLike เนไลก์

NaeLike

Naelike เนไลก์

@เว็บไซต์ 👍 Web : https://naelike.com ..! :shipit:
@ติดตาม 👍 Web : https://naelike.com/addmee ..! :shipit:

TikTok : https://www.tiktok.com/@naelike6564
Facebook : https://web.facebook.com/NaeLikePage
Instagram : https://www.instagram.com/naelike_ig

NaeLike
Discord คลิก..!

About

PHP HTML แปลงภาษาอังกฤษตัวพิมพ์เล็ก ตัวพิมพ์ใหญ่ text-transform หรือ strtoupper, strtolower, ucfirst, ucwords

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages