
- PHP 7 Tutorial
- PHP 7 - Home
- PHP 7 - Introduction
- PHP 7 - Performance
- PHP 7 - Environment Setup
- PHP 7 - Scalar Type Declarations
- PHP 7 - Return Type Declarations
- PHP 7 - Null Coalescing Operator
- PHP 7 - Spaceship Operator
- PHP 7 - Constant Arrays
- PHP 7 - Anonymous Classes
- PHP 7 - Closure::call()
- PHP 7 - Filtered unserialize()
- PHP 7 - IntlChar
- PHP 7 - CSPRNG
- PHP 7 - Expectations
- PHP 7 - use Statement
- PHP 7 - Error Handling
- PHP 7 - Integer Division
- PHP 7 - Session Options
- PHP 7 - Deprecated Features
- PHP 7 - Removed Extensions & SAPIs
- PHP 7 Useful Resources
- PHP 7 - Quick Guide
- PHP 7 - Useful Resources
- PHP 7 - Discussion
Remove extra whitespace from the beginning PHP?
If you want to remove extra whitespace from the beginning, use ltrim() in PHP. Let’s say the following is our variable −
$value=" Hello, welcome to PHP Tutorial ";
We want the output with no whitespace on the left −
Hello, welcome to PHP Tutorial
Example
<!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>
Output
This will produce the following output
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
- Related Articles
- Java Program to remove whitespace from the beginning and end of a string
- How to remove all whitespace from String in Java?
- Remove whitespace in Java string.
- Java Program to remove leading and trailing whitespace from a string
- PHP: Remove object from array
- How to remove leading and trailing whitespace from a MySQL field value?
- Python Pandas – Remove leading and trailing whitespace from more than one column
- Remove extra spaces in string JavaScript?
- PHP make sure string has no whitespace?
- Remove new lines from string in PHP
- Remove comma from a string in PHP?
- How to remove extra space below the image inside div?
- How to remove all leading whitespace in string in Python?
- How to remove all trailing whitespace of string in Python?
- C program to remove extra spaces using string concepts.

Advertisements