In this tutorial we will learn How To Remove Spaces from End of a String in PHP. Built-in PHP rtrim() function can be used to remove Spaces from end of the string.
Table of Contents
PHP rtrim() function
PHP rtrim() function removes white spaces and defined characters from the end of the string.
In this example rtrim() function is used to remove the spaces from end of string.
<?php
$string = "HowToCodeSchool.com ";
$newString = rtrim($string);
echo $newString;
?>
In above code of PHP, spaces in the end of string are removed.
More PHP Remove Tutorials:
Remove Dashes from StringRemove Spaces from String
Remove Underscore from String
Remove Single Quotes from String
Remove Double Quotes from String
Remove Backslash from String
Remove Forward Slash from String
Remove Last Character from String
Remove Everything from String Except Numbers