PHP Questions Home

Categories

Arrays
Files
Forms
Functions
Images
MySQL
Numbers
Others
Strings
Website


PHP Functions

PHP Functions


More PHP

Top Questions
Ask a Question

How do I remove space from the start of a PHP string?


If you want to do this then it's easy with the Ltrim function - note the 'L' for left at the start of that.

Here is a very simple example which is all you need to understand and how to apply this particular PHP function:

<?php
$text 
"   Give me some space";

echo 
"<" ltrim($text) . ">";
//prints: <Give me some space>
?>



More strings PHP Questions

How do I convert relevant characters in a string to HTML entities?
What is the difference between ' and "?
How do I fetch the meta tags from a webpage using PHP?
How can I repeat a string variable several times?
How do I find the position of a letter in a string in PHP?