Skip to content

Instantly share code, notes, and snippets.

@pedroborges
Last active August 29, 2015 14:01
Show Gist options
  • Save pedroborges/e26b6b520946839fa4e5 to your computer and use it in GitHub Desktop.
Save pedroborges/e26b6b520946839fa4e5 to your computer and use it in GitHub Desktop.
Invoking methods dynamically using foreach,
<?php
// Inside some class...
$names = ['Event', 'Exception', 'Routing'];
foreach ($names as $name)
{
$this->{"method{$name}"}();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment