Answers for "change spaces to underscroe php"

PHP
5

php replace space with underscore

$str = str_replace(' ', '_', $str);
Posted by: Guest on July-14-2020
3

php convert spaces to underscores

$str = str_replace(' ', '_', $str);
Posted by: Guest on August-25-2020

Browse Popular Code Answers by Language