strip characters from a string php code example
Example 1: php remove text from string
<?php
//Replace the characters "world" in the string "Hello world!" with "Peter":
echo str_replace("world","Peter","Hello world!");
?>
Example 2: how to trim string in laravel
{{ \Illuminate\Support\Str::limit($productVal, 20, $end='...') }}
Example 3: how to trim text php
$text = " hello world ";
$text = trim($text);
=> "hello world"