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