Get all method names starting with a substring from a PHP object

Viewed 30510

I have an object and want a method that returns how much method this Object have that start with bla_.

I found get_class_methods() which returns all method names, but I only want names which starts with bla_

4 Answers
Related