Answers for "php trim ,"

PHP
3

how to trim text php

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

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

trim php

Removes whitespace from beginning and end of a string
Posted by: Guest on June-13-2021

Browse Popular Code Answers by Language