1
0
Fork 0
template/functions/lowercase-plus.php

7 lines
104 B
PHP
Raw Normal View History

2024-04-25 21:55:08 +02:00
<?php
function lowercaseplus($string) {
return str_replace(' ', '+', mb_strtolower($string));
}
?>