W3Schools.com (2024)

❮ PHP String Reference

Example

Remove characters from the left side of a string:

<?php
$str = "Hello World!";
echo $str . "<br>";
echo ltrim($str,"Hello");
?>

Try it Yourself »

Definition and Usage

The ltrim() function removes whitespace or other predefined characters from the left side of a string.

Related functions:

  • rtrim() - Removes whitespace or other predefined characters from the right side of a string
  • trim() - Removes whitespace or other predefined characters from both sides of a string

Syntax

ltrim(string,charlist)

Parameter Values

Parameter Description
string Required. Specifies the string to check
charlist Optional. Specifies which characters to remove from the string. If omitted, all of the following characters are removed:
  • "\0" - NULL
  • "\t" - tab
  • "\n" - new line
  • "\x0B" - vertical tab
  • "\r" - carriage return
  • " " - ordinary white space

Technical Details

Return Value: Returns the modified string
PHP Version: 4+
Changelog: The charlist parameter was added in PHP 4.1

More Examples

Example

Remove whitespaces from the left side of a string:

<?php
$str = "Hello World!";
echo "Without ltrim: " . $str;
echo "<br>";
echo "With ltrim: " . ltrim($str);
?>

The HTML output of the code above will be (View Source):

<!DOCTYPE html>
<html>
<body>

Without ltrim:Hello World!<br>With ltrim: Hello World!
</body>
</html>

The browser output of the code above will be:

Without ltrim: Hello World!
With ltrim: Hello World!

Try it Yourself »

Example

Remove newlines (\n) from the left side of a string:

<?php
$str = "\n\n\nHello World!";
echo "Without ltrim: " . $str;
echo "<br>";
echo "With ltrim: " . ltrim($str);
?>

The HTML output of the code above will be (View Source):

<!DOCTYPE html>
<html>
<body>

Without ltrim:

Hello World!<br>With ltrim: Hello World!
</body>
</html>

The browser output of the code above will be:

Without ltrim: Hello World!
With ltrim: Hello World!

Try it Yourself »

❮ PHP String Reference

W3schools Pathfinder

Track your progress - it's free!

W3Schools.com (2024)
Top Articles
Who can access a safe deposit box? - Stonewall Vaults
Onboard Conor McGregor's $4m Lamborghini 'super-yacht' - one of only 63 made
Craigslist Free En Dallas Tx
Camera instructions (NEW)
Cintas Pay Bill
Monthly Forecast Accuweather
Unity Stuck Reload Script Assemblies
Dollywood's Smoky Mountain Christmas - Pigeon Forge, TN
Retro Ride Teardrop
Roblox Developers’ Journal
Red Wing Care Guide | Fat Buddha Store
Gunshots, panic and then fury - BBC correspondent's account of Trump shooting
CSC error CS0006: Metadata file 'SonarAnalyzer.dll' could not be found
Bme Flowchart Psu
Otr Cross Reference
Knaben Pirate Download
Ella Eats
Hartford Healthcare Employee Tools
Craigslist Alabama Montgomery
Buff Cookie Only Fans
Cyndaquil Gen 4 Learnset
Aldine Isd Pay Scale 23-24
Beryl forecast to become an 'extremely dangerous' Category 4 hurricane
The best firm mattress 2024, approved by sleep experts
[PDF] NAVY RESERVE PERSONNEL MANUAL - Free Download PDF
Ice Dodo Unblocked 76
Gran Turismo Showtimes Near Marcus Renaissance Cinema
If you have a Keurig, then try these hot cocoa options
Dark Entreaty Ffxiv
Spiritual Meaning Of Snake Tattoo: Healing And Rebirth!
Cars & Trucks - By Owner near Kissimmee, FL - craigslist
Afni Collections
Speechwire Login
Darktide Terrifying Barrage
Poe T4 Aisling
Utexas Baseball Schedule 2023
47 Orchid Varieties: Different Types of Orchids (With Pictures)
Are you ready for some football? Zag Alum Justin Lange Forges Career in NFL
Oxford Alabama Craigslist
Kelly Ripa Necklace 2022
Restored Republic May 14 2023
Sas Majors
Lake Andes Buy Sell Trade
Florida Lottery Claim Appointment
Thothd Download
Joy Taylor Nip Slip
Bedbathandbeyond Flemington Nj
Christie Ileto Wedding
Lsreg Att
All Obituaries | Roberts Funeral Home | Logan OH funeral home and cremation
Latest Posts
Article information

Author: Edmund Hettinger DC

Last Updated:

Views: 5831

Rating: 4.8 / 5 (78 voted)

Reviews: 85% of readers found this page helpful

Author information

Name: Edmund Hettinger DC

Birthday: 1994-08-17

Address: 2033 Gerhold Pine, Port Jocelyn, VA 12101-5654

Phone: +8524399971620

Job: Central Manufacturing Supervisor

Hobby: Jogging, Metalworking, Tai chi, Shopping, Puzzles, Rock climbing, Crocheting

Introduction: My name is Edmund Hettinger DC, I am a adventurous, colorful, gifted, determined, precious, open, colorful person who loves writing and wants to share my knowledge and understanding with you.