यदि आप शुरुआत से अतिरिक्त खाली स्थान हटाना चाहते हैं, तो PHP में 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