Answers for "write a php script that removes the whitespaces from a stringsample"

PHP
2

remove whitespace from string php

$str = "\n\n\nHello World!\n\n\n";
echo "With trim: " . trim($str);
Posted by: Guest on July-10-2020

Code answers related to "write a php script that removes the whitespaces from a stringsample"

Browse Popular Code Answers by Language