Zen Follower
- Join Date:
- Jan 2018
- Posts:
- 157
- Plugin Contributions:
- 0
Replacing while with foreach?
I have this code and I am confused how to change this to foreach
reset($currencies->currencies);
$currencies_array = array();
while (list($key, $value, $title) = each($currencies->currencies))
Is this correct?
$currencies_array = array();
foreach ($currencies->currencies as $key => $value) {