Answers for "how to trim a word from sentence in 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 "how to trim a word from sentence in php"

Browse Popular Code Answers by Language