Ben Zend PHP sertifika için okuyorum.
Bu sorunun cevabını emin değil.
Question: What is the best way to iterate and modify every element of an array using PHP 5?
a) yineleme sırasında bir dizi değişiklik yapamazsınız
b)
for($i = 0; $i < count($array); $i++) { /* ... */ }
c)
foreach($array as $key => &$val) { /* ... */ }
d)
foreach($array as $key => $val) { /* ... */ }
e)
while(list($key, $val) = each($array)) { /* ... */ }
My instinctive is (B) since there is no need to create temporary variable then I realize it won't work for associative arrays. Further searching around the net found this: Storing the invariant array count in a separate variable improves performance.
$cnt = count($array);
for ($i = 0; $i < $cnt; $i++) { }