remove white space in front of a string in php code example
Example 1: php remove space before and after string
$words = ' my words ';
$words = trim($words);
var_dump($words);
// string(8) "my words"
Example 2: remove whitespace from string php
$str = "\n\n\nHello World!\n\n\n";
echo "With trim: " . trim($str);