Answers for "trim the end of the text php"

PHP
3

how to trim text php

$text = "      hello world   ";
$text = trim($text);

=> "hello world"
Posted by: Guest on September-28-2020

Code answers related to "trim the end of the text php"

Browse Popular Code Answers by Language