Jump to content
  • 0

Фича инструкции list


CoDy
 Share

Question

Кто то может объяснить эту фичю:

$array = array (
'1' => 1,
'2' => 2,
'3' => 3
);

while ( (list ($key, $val) = each($array)) && (is_int($key)) ) {
echo $key, $val, '<br />';
}
echo '————————--'';
$array = array (
'1' => 1,
'e' => 2,
'3' => 3
);

while ( (list ($key, $val) = each($array)) && (is_int($key)) ) {
echo $key, $val, '<br />';
}

exit();

Результат:

11

22

33

—————————————————

11

Link to comment
Share on other sites

4 answers to this question

Recommended Posts

  • 0

Используется для присвоения значений списку переменных, нэ? Это не "одиннадцать", "двадцать два" и "тридцать три", это "одинодин", "двадва" и "тритри".

Сори, что не объяснил, в чем собственно вопрос, думал что из кода и результата будет понятно.

Вопрос в следующем: почему во втором цикле не выводится строка 33, ведь $key = 3, а is_int(3) == true.

После одного несрабанывания условия(на втором элементе массива is_int('e') = false), значение переменных $key и $val равняется null.

Edited by CoDy
Link to comment
Share on other sites

  • 0

Так это проблема не list()

После одного несрабанывания условия(на втором элементе массива is_int('e') = false)

...while прерывается, потому что условие в скобках не выполнилось.

Что не так-то?

И что только не придумают, лишь бы не использовать foreach

  • Like 1
Link to comment
Share on other sites

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