Answers for "how to change uppercase to lowercase and spaces to _ in php"

PHP
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 "how to change uppercase to lowercase and spaces to _ in php"

Browse Popular Code Answers by Language