String ในภาษา PHP คือ ข้อความหรือตัวอักษรที่เรียงต่อกัน
การประกาศ String:
- ใช้เครื่องหมาย
""
หรือ''
ล้อมรอบข้อความ - ตัวอย่าง:
PHP
$name = "John Doe";
$message = 'Hello World!';
การต่อ String:
- ใช้
.
ต่อ String สองตัวเข้าด้วยกัน - ตัวอย่าง:
PHP
$fullname = $name . " " . $age; // "John Doe 30"
ฟังก์ชั่น String:
strlen()
: หาความยาวของ Stringstrtoupper()
: แปลง String เป็นตัวพิมพ์ใหญ่strtolower()
: แปลง String เป็นตัวพิมพ์เล็กsubstr()
: ตัดส่วนหนึ่งของ Stringstrpos()
: หาตำแหน่งของตัวอักษรใน Stringstr_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/