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

ลบช่องว่างเพิ่มเติมจากจุดเริ่มต้น PHP?


หากคุณต้องการลบช่องว่างพิเศษออกจากจุดเริ่มต้น ให้ใช้ ltrim() ใน PHP สมมติว่าต่อไปนี้คือตัวแปรของเรา -

$value="  Hello, welcome to PHP Tutorial  ";

เราต้องการผลลัพธ์ที่ไม่มีช่องว่างทางด้านซ้าย −

Hello, welcome to PHP Tutorial

ตัวอย่าง

<!DOCTYPE html>
<html>
<body>
<?php
   $value="  Hello, welcome to PHP Tutorial  ";
   print_r( "The actual value is=".$value."<br>");
   echo "The actual length is=",strlen($value)."<br>";
   $modifiedValue=ltrim($value);
   echo "After removing extra whitespace from beginning=",strlen($modifiedValue)."<br>";
   echo "The result is=".$modifiedValue;
?>
</body>
</html>

ผลลัพธ์

สิ่งนี้จะสร้างผลลัพธ์ต่อไปนี้

The actual value is= Hello, welcome to PHP Tutorial
The actual length is=34
After removing extra whitespace from beginning=32
The result is=Hello, welcome to PHP Tutorial