আপনি যদি শুরু থেকে অতিরিক্ত হোয়াইটস্পেস অপসারণ করতে চান তবে পিএইচপি-তে ltrim() ব্যবহার করুন। ধরা যাক নিম্নলিখিতটি আমাদের চলক −
$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