String ในภาษา PHP

String ในภาษา PHP คือ ข้อความหรือตัวอักษรที่เรียงต่อกัน

การประกาศ String:

  • ใช้เครื่องหมาย "" หรือ '' ล้อมรอบข้อความ
  • ตัวอย่าง:

PHP

$name = "John Doe";
$message = 'Hello World!';

การต่อ String:

  • ใช้ . ต่อ String สองตัวเข้าด้วยกัน
  • ตัวอย่าง:

PHP

$fullname = $name . " " . $age; // "John Doe 30"

ฟังก์ชั่น String:

  • strlen(): หาความยาวของ String
  • strtoupper(): แปลง String เป็นตัวพิมพ์ใหญ่
  • strtolower(): แปลง String เป็นตัวพิมพ์เล็ก
  • substr(): ตัดส่วนหนึ่งของ String
  • strpos(): หาตำแหน่งของตัวอักษรใน String
  • str_replace(): แทนที่ตัวอักษรใน String

ตัวอย่าง:

PHP

$message = "Hello World!";

echo strlen($message); // 13
echo strtoupper($message); // HELLO WORLD!
echo strtolower($message); // hello world!
echo substr($message, 0, 5); // Hello
echo strpos($message, "W"); // 6
echo str_replace("World", "Universe", $message); // Hello Universe!

เพิ่มเติม:

  • String ใน PHP เป็นแบบ immutable
  • การแก้ไข String จะสร้าง String ใหม่
  • สามารถใช้ escape characters กับ String

แหล่งข้อมูล:

  • W3Schools: [URL ที่ไม่ถูกต้องถูกนำออกแล้ว]
  • PHP.net: https://www.php.net/manual/en/language.types.string.php
  • Tutorialzine: https://irinagyurjinyan.wordpress.com/2022/04/12/%D1%83%D1%80%D0%BE%D0%BA-19/
Related Posts
 jquery vslidation remove spaces from input คืออะไร

jQuery validation remove spaces from input คือ ฟังก์ชันที่ใช้ลบช่องว่างออกจาก input field โดยใช้ jQuery วิธีใช้ JavaScri Read more

dimiss keyboard flutter คืออะไร

ใน Flutter dismiss keyboard หมายถึง การซ่อนแป้นพิมพ์เสมือนบนหน้าจอ วิธีการ dismiss keyboard ใช้ FocusNode: Dart imp Read more

bootstrap5 cdn คืออะไร

Bootstrap5 CDN คือ Content Delivery Network ของ Bootstrap 5 ซึ่งเป็นเฟรมเวิร์ก front-end ยอดนิยมที่ช่วยให้นักพัฒนาเว็บสร Read more

เขียนโค้ดดึงเนื้อหาจาก wordpress

โค้ดดึงเนื้อหาจาก WordPress วิธีดึงเนื้อหาจาก WordPress มีหลายวิธี ขึ้นอยู่กับประเภทของเนื้อหาที่ต้องการดึง ดึงบทความทั้ Read more