ฉันได้รับ$row['message']
จากฐานข้อมูล MySQL และฉันต้องการลบช่องว่างทั้งหมดเช่น\n
\t
นั้น
$row['message'] = "This is a Text \n and so on \t Text text.";
ควรจัดรูปแบบเป็น:
$row['message'] = 'This is a Text and so on Text text.';
ฉันเหนื่อย:
$ro = preg_replace('/\s\s+/', ' ',$row['message']);
echo $ro;
แต่มันไม่ได้ลบ\n
หรือ\t
เพียงแค่ช่องว่างเดียว ใครสามารถบอกฉันว่าจะทำเช่นนั้นได้อย่างไร