Jump to content
  • 0

В цикле FOR обновляется переменная, как промежуточные результаты записать в другую переменную


Boron
 Share

Question

Запарился уже с этой задачей. Вроде простецкая, а ничего не получается. :) Поэтому обращаюсь за помощью к вам. :rolleyes:

В общем есть цикл:

for ($i = 1; $i <= 26; $i++)
{
$temp_string = "index_question".$i.", ";
echo $temp_string;
}

Получаем с него такой результат:

index_question1, index_question2, index_question3, ..., index_question25, index_question26, index_question27

Как эту строчку, сохранить в переменной?

Я пробовал сделать так (просто в VBA это катило):

$full_string = " ";

for ($i = 1; $i <= 26; $i++)
{
$temp_string = "index_question".$i.", ";
echo $temp_string;
$full_string = $full_string + $temp_string;
}

Но результатом от такого решения является:

00000000...00

Кому не лень подсказать решение к моей проблеме? :angry:

Link to comment
Share on other sites

2 answers to this question

Recommended Posts

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy