Remove whitespaces from both sides of a string:
$str = " Hello World! ";
echo "Without trim: " . $str;
echo "<br>";
echo "With trim: " . trim($str);
The HTML output of the code above will be (View Source):
<!DOCTYPE html>
<html>
<body>
Without trim:  Hello World! 
With trim: Hello World!
</body>
</html>
The browser output of the code above will be:
Without trim: Hello World!
With trim: Hello World!
by გიორგი ბაკაშვილი
4 years ago
PHP
String
PHP official doc
-1
Pro tip: use ```triple backticks around text``` to write in code fences
0
Valeri Tandilashvili 4 years ago
onlinephpfunctions.com
-ზე "\n" აკეთებს br-ს, ასევე, მოყვანილი მაგალითი არ არის მარტივად გასაგები და აღსაქმელი
REPLY