0

I have array:

array(
  0 => new SomeClass(1),
  1 => new SomeClass(2),
  2 => new SomeClass(3),
)

How can I use array map to call method (non-static) of SomeClass class for each item in my array?

2
  • 1
    Do you need to use array_map specifically? or would a foreach not do? Commented May 10, 2012 at 8:12
  • Why are you using array_map() instead of a foreach block? Commented May 10, 2012 at 8:12

1 Answer 1

3

There's a more readable way than array_map or array_walk:

$instances = array(
  0 => new SomeClass(1),
  1 => new SomeClass(2),
  2 => new SomeClass(3),
)

foreach($instances as $instance)
{
    $instance->foo();
}

but if you really want array_map:

array_map(function($instance) {
    $instance->foo();
}, $instances);
Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.