Answers for "php remove spaces and all lowercase"

PHP
-1

remove all spaces php

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

how to change uppercase to lowercase and spaces to _ in php

<?php print (str_replace(' ', '-', strtolower($blob))); ?>
Posted by: Guest on June-21-2021

Code answers related to "php remove spaces and all lowercase"

Browse Popular Code Answers by Language