Answers for "how to query to remove double space in php"

PHP
-1

remove all spaces php

$string = "this is my     string"
$string = preg_replace('/s+/', '', $string);
Posted by: Guest on October-02-2020
2

php remove all whitespace from a string

//remove all white spaces from a string
$whatonearth=preg_replace('/s/','',"what o n   ear th");
Posted by: Guest on November-04-2019

Code answers related to "how to query to remove double space in php"

Browse Popular Code Answers by Language