ID:              32603
 User updated by: indeyets at gmail dot com
 Reported By:     indeyets at gmail dot com
-Status:          Feedback
+Status:          Open
 Bug Type:        Feature/Change Request
 PHP Version:     5.0.4
 New Comment:

class_implements() requires object instantiaiton too. That is a step,
which I need to skip.

I need to check if Class implements interface, not Object!


Previous Comments:
------------------------------------------------------------------------

[2005-04-13 00:05:28] [EMAIL PROTECTED]

How about: http://php.net/class-implements

------------------------------------------------------------------------

[2005-04-06 08:56:45] indeyets at gmail dot com

Description:
------------
there is no easy way to check if class implements some interface. This
is needed, when, for example, php-application has support for loading
external classes.

external classes have to implement some interface. And check for this
should happen BEFORE object creation. (for example, there might be a
need for some specific constructor syntax).

PHP 5.0 allows to do the following things:
1). $parent = get_parent_class("SomeClassName"). This would be
sufficient, if plugins _extend_ some base class. that's not our case -
wouldn't work for interfaces
2). if ($obj instanceof "SomeInterfaceName") {}. This would work, if
we
could create object before the interface check. Wouldn't work for
non-existen objects
3). reflection API. it can do the thing, but overhead (both in code
and
in resources) is too big



------------------------------------------------------------------------


-- 
Edit this bug report at http://bugs.php.net/?id=32603&edit=1

Reply via email to