Hi, basicly I've got an array and want to call the same function for each element. Which way is it faster?
foreach($elemeents as $element){
callFunction($element);
}
OR
function callFunction($leements){
foreach($elements as $element){
//do something
}
}
thanx in advance, im just a beginner