mirror of
https://gitlab.easter-eggs.com/ee/ldapsaisie.git
synced 2024-11-22 18:09:06 +01:00
functions.php : Added replaceSpaces() function
This commit is contained in:
parent
e834323718
commit
60b567845c
1 changed files with 17 additions and 0 deletions
|
@ -530,4 +530,21 @@ function LSdebugDefined() {
|
|||
return strtr($string, $replaceAccent);
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Supprime les espaces d'une chaine en les remplacant par un motif ou non
|
||||
*
|
||||
* @param[in] $str La chaine originale
|
||||
* @param[in] $to Le motif de remplacement. S'il n'est pas spécifié, les espaces seront simplement supprimés
|
||||
*
|
||||
* @retval string La chaine sans les espaces
|
||||
**/
|
||||
function replaceSpaces($str,$to='') {
|
||||
return strtr($str,array (
|
||||
' ' => $to,
|
||||
"\t" => $to
|
||||
)
|
||||
);
|
||||
}
|
||||
|
||||
?>
|
||||
|
|
Loading…
Reference in a new issue