trim php string code example
Example 1: remove empty spaces php
$string = str_replace(' ', '', $string);
Example 2: trim elements of array php
$arr = array( " John ", "Jacob ", " Tom ", " Tim ");
$result = array_map('trim', $arr)
Example 3: trim function php
$string = " Hello world ";
$trimmedString = trim($string);
$string = "babcabcHello worldabbaca";
$trimmedString = trim($string, 'abc');
Example 4: remove space from start and end of string in php
$trimmed = trim($text);
var_dump($trimmed);
Example 5: how to trim string in laravel
{{ \Illuminate\Support\Str::limit($productVal, 20, $end='...') }}
Example 6: how to trim text php
$text = " hello world ";
$text = trim($text);
=> "hello world"