ID: 49472 Updated by: [email protected] Reported By: phil at mossyvale dot co dot uk -Status: Assigned +Status: Closed Bug Type: Scripting Engine problem Operating System: * PHP Version: 5.*, 6 Assigned To: felipe New Comment:
This bug has been fixed in SVN. Snapshots of the sources are packaged every three hours; this change will be in the next snapshot. You can grab the snapshot at http://snaps.php.net/. Thank you for the report, and for helping us make PHP better. Previous Comments: ------------------------------------------------------------------------ [2009-12-03 12:34:51] [email protected] Automatic comment from SVN on behalf of felipe Revision: http://svn.php.net/viewvc/?view=revision&revision=291642 Log: - Fixed bug #49472 (Constants defined in Interfaces can be overridden) ------------------------------------------------------------------------ [2009-09-13 18:47:44] [email protected] <?php interface ia { const c = 'Sea'; } class Foo implements ia { // const c = "Lake"; // Attempting to override ia's constant c in // this class triggers a fatal error. } class FooBar extends Foo implements ia { const c = 'Ocean'; // No error, class constant // overriding ia's definition. public function show(){ // ia's definition is still accessible. return ia::c; } } $i = new FooBar; echo FooBar::c; echo $i->show(); ?> ------------------------------------------------------------------------ [2009-09-05 10:08:19] phil at mossyvale dot co dot uk Description: ------------ If an interface defines a constant and is then implemented by a class which is then extended with a further class and both classes implement the interface, the second class may override the interface constant without a fatal error. Also present in 5.2.10 on FreeBSD 7.2 Reproduce code: --------------- --- >From manual page: language.oop5.interfaces --- http://codepad.org/vStYX1Kz Expected result: ---------------- Fatal error: Cannot inherit previously-inherited constant c from interface ia ... on line 18 Actual result: -------------- Program outputs "OceanSea" which indicates that the interface constant is still available but the class constant with the same name overrides it. ------------------------------------------------------------------------ -- Edit this bug report at http://bugs.php.net/?id=49472&edit=1
