$ Array = array ('step one', 'Step two', 'Step three ', 'Step four'); // defines an array
Echo current ($ array )."
N "; // returns the first element of the array.
Next ($ array); // The array pointer moves one bit behind
Next ($ array); // The array pointer moves one bit behind
Echo current ($ array )."
N "; // returns the current element of the array, the third Value
Reset ($ array); // pointer to the first value of the array
Echo current ($ array )."
N "; // returns the first value of the array.
//
$ Info = array ('red', 'blue', 'green'); // defines an array.
While ($ result = current ($ info ))
{
Echo $ result;
Echo"
";
Next ($ info );
}
//
$ Array = array (
'Fruit1' => 'apple ',
'Fruit2' => 'Orange ',
'Fruit3' => 'grape ',
'Fruit4' => 'apple ',
'Fruit5' => 'apple'); // defines an array.
While ($ fruit_name = current ($ array) // obtain the current value of the array cyclically
{
If ($ fruit_name = 'apple') // if the current value is apple
{
Echo key ($ array ).'
'; // Key name of the output current value
}
Next ($ array); // move the array pointer down one step
}