Nếu bạn muốn loại bỏ khoảng trắng thừa ngay từ đầu, hãy sử dụng ltrim () trong PHP. Giả sử sau đây là biến số của chúng tôi -
$value=" Hello, welcome to PHP Tutorial ";
Chúng tôi muốn đầu ra không có khoảng trắng ở bên trái -
Hello, welcome to PHP Tutorial
Ví dụ
<!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>
Đầu ra
Điều này sẽ tạo ra kết quả sau
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