Answers for "trim tab in string php"

PHP
2

how to trim text php

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

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

trim | from right in php

$DATA=trim("abc|1|test|","|");
Posted by: Guest on December-18-2020

Browse Popular Code Answers by Language