UK [rɪˈpi:t] US [rɪˈpit]

vt. Répéter, réciter

vi Répéter le vote

n. Répéter (programme) répétition; répète Participe présent : répéter Passé : répété Participe passé : répété

Fonction php str_repeat() syntaxe

Comment utiliser la fonction str_repeat() ?

La fonction php str_repeat() est utilisée pour réutiliser la chaîne spécifiée. La syntaxe est str_repeat(string,repeat). Cette fonction répète la chaîne un nombre de fois spécifié.

Fonction :Réutiliser la chaîne spécifiée

Syntaxe :str_repeat(string,repeat)

Paramètres :

Paramètre Description
string Doit être répété String
repeat doit spécifier le nombre de fois que la chaîne est répétée, qui doit être supérieur ou égal à 0

Explication : La fonctionstr_repeat() répète la chaîne le nombre de fois spécifié

Fonction php str_repeat() exemple


Exécuter l'instance»

Cliquez sur le bouton « Exécuter l'instance » pour afficher l'instance en ligne

Sortie :

hello world!hello world!hello world!
"; $j = str_repeat($i,3); print_r($j); ?>

Exécuter l'instance»

Cliquez sur le bouton « Exécuter l'instance » pour voir l'instance en ligne

Sortie :

Learn PHP to come to php.cn Learn PHP to come to php.cn Learn PHP to come to php.cn