Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> PHP

ฟังก์ชันสับ () ใน PHP


ฟังก์ชัน chop() ใน PHP ใช้เพื่อลบช่องว่าง

ไวยากรณ์

chop(str, charlist)

พารามิเตอร์

  • str − สตริงที่จะหนี

  • ชาร์ลิสต์ − ระบุตัวอักษรที่ควรลบ

คืนสินค้า

ฟังก์ชันสับ ()

ตัวอย่าง

ต่อไปนี้เป็นตัวอย่าง −

<?php
   $str = "Demo Text!"; echo $str . " ";
   echo chop($str,"Text!");
?>

ผลลัพธ์

Demo Text! Demo

ตัวอย่าง

เรามาดูตัวอย่างกัน −

<?php
   $str = "Welcome \nto the \nwebsite \n";
   echo $str;
   echo chop($str);
?>

ผลลัพธ์

Welcome to the website Welcome to the website