7 lines
104 B
PHP
7 lines
104 B
PHP
|
<?php
|
||
|
|
||
|
function lowercaseplus($string) {
|
||
|
return str_replace(' ', '+', mb_strtolower($string));
|
||
|
}
|
||
|
|
||
|
?>
|