function no_space(string $s): string {
  $s = str_replace(" ","", $s);
  return $s;
}
Catégories : PHP