29

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 4

50

You can use preg_grep() to filter them:

$method_names = preg_grep('/^bla_/', get_class_methods($object));
Sign up to request clarification or add additional context in comments.

2 Comments

From where the variable $object comes? Actually I want to fetch method list of 4 and 5 controllers. How I can set the $object variable?
$object is the class name as a string or an instance of the class, (as indicated in the documentation).
6

Try:

$methods = array();
foreach (get_class_methods($myObj) as $method) {
    if (strpos($method, "bla_") === 0) {
        $methods[] = $method;
    }
}

Note that === is necessary here. == won't work, since strpos() returns false if no match was found. Due to PHPs dynamic typing this is equal to 0 and therefore a strict (type safe) equality check is needed.

Comments

1

Why don't you just make your own function that loops through the array from get_class_methods() and tests each element against "bla_" and returns a new list with each matching value?

1 Comment

because this is putting responsibility on the caller instead of the being called function
-1

I would suggest something a bit more flexible such as this (unless the method names are dynamic or are unknown):

interface ITest
{
    function blah_test();
    function blah_test2();
}

class Class1 implements ITest
{
    function blah_test()
    {
    }

    function blah_test2()
    {
    }

    function somethingelse()
    {
    }
}

$obj = new Class1();

$methods = array_intersect( get_class_methods($obj), get_class_methods('ITest') );
foreach( $methods as $methodName )
{
    echo "$methodName\n";
}

Outputs:

blah_test
blah_test2

Comments

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.