Vidyalelo
PHP · Q90

Object Oriented Concept

Programming · PHP · question 90

Q90

If you call a method and it doesn’t exist it’ll cause a problem. To check the method which function will you use?

A.
_method()
B.
methodexists()
C.
is_callable()
Answer
D.
is_method()

Answer: Option C

Solution

Answer: Option C
Solution:
There is another method which you can use – method_exists() for similar purpose.