Jump to content

Problem With Pointers


SCT

Recommended Posts

Hi;

 

i want learning PHP coding. i read books and watching tutorials. and i've problem about pointers. i wrote this code by myself and this code not working.

 

 

<?php

$num= Array(0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20);

while ($a = current($num)) {

echo $a . ",";

next($num);

}

?>

 

why this is not working ? please help me.

Link to comment
https://forums.phpfreaks.com/topic/274337-problem-with-pointers/
Share on other sites

Unfortunately, it's not working because PHP is treating your first value, the 0, as boolean false, so it's skipping the entire loop. Change it to 1 and see for yourself.

 

Regardless, you're better off sticking with foreach() loops, which is generally the convention when looping through arrays.

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.