Answers for "php to lowercase string and remove spaces"

PHP
9

remove space from string php

<?php
$stripped = str_replace(' ', '', "10 1000 0000 000");
echo $stripped;
Posted by: Guest on March-12-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 to lowercase string and remove spaces"

Browse Popular Code Answers by Language