Is there a way to define the boolean returned value for an if statement issued on my class instances? I have a class implementing the array access interface and so on, but even if the wrapped array is empty:
if($class)
will always return true, since it is an object and does exists. I'd rather not have to issue everytime an:
if(count($class))
Is there any way to achieve this?
Given that you are implementing a class, maybe you could have a member which counts the elements in the array? Something like:
And then, do the
if
like if($class->numElems) ...