Johannes Mueller wrote:

if(is_a($foo, bar)){
..
}
// runs with an undefined constant bar notification

I think the instanceof solution can cause problems, because you can not trigger the problem. What do you think?

I think you meant:

 if(is_a($foo, "bar")){

since is_a() takes a string as the second parameter.
Does this correction then reset your expectation about instanceof?

Chris

--
Blog: http://blogs.oracle.com/opal
Twitter:  http://twitter.com/ghrd

--
PHP Internals - PHP Runtime Development Mailing List
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to