Hello,
I have a string that has a value of zero ( $contador = 0;
), other than the value is three ( $vezes = 3;
) and another that is $numeros = "13|123456789\n14|123456780\n"
.
I want PHP to do a function (example echo();
) until the string $contador
arrives at three, and do this function with the 2 values in the string $numeros
, eg:
$ddd = 13; //Pega o valor 13 da string $numeros
$numero = 123456789; //Pega o valor 123456789 da string $numeros
echo "Meu DDD é $ddd e meu celular é $numero!";
//Resposta (vai repetir a função echo acima 3 vezes graças ao valor da string $vezes):
// Meu DDD é 13 e meu celular é 123456789!
// Meu DDD é 13 e meu celular é 123456789!
// Meu DDD é 13 e meu celular é 123456789!
Same thing with the second value of string $numeros
. And when the value of string $contador
reaches three, the script stops.
I could not think of anything that would do this, thank you to all of you!