Answers for "how to remove white spaces and tabs in php"

PHP
2

remove every whitespace php

$string = preg_replace('/\s+/', '', $string);
Posted by: Guest on May-29-2020

Code answers related to "how to remove white spaces and tabs in php"

Browse Popular Code Answers by Language