1
0
Fork 0
template/functions/lowercase-plus.php
2024-04-25 21:55:08 +02:00

7 lines
No EOL
104 B
PHP
Executable file

<?php
function lowercaseplus($string) {
return str_replace(' ', '+', mb_strtolower($string));
}
?>