php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #39294 "Fatal error: Cannot redeclare class" for classes that use extends
Submitted: 2006-10-28 23:39 UTC Modified: 2006-10-29 00:02 UTC
From: a79315 at hotmail dot com Assigned:
Status: Not a bug Package: Class/Object related
PHP Version: 5.1.2 OS: suse 10.1
Private report: No CVE-ID: None
Welcome back! If you're the original bug submitter, here's where you can edit the bug or add additional notes.
If you forgot your password, you can retrieve your password here.
Password:
Status:
Package:
Bug Type:
Summary:
From: a79315 at hotmail dot com
New email:
PHP Version: OS:

 

 [2006-10-28 23:39 UTC] a79315 at hotmail dot com
Description:
------------
This code works fine on PHP 4 but fails on PHP 5.1.2. I know that I need to try it on the 5.1.6 version but I can't get my suse server to upgrade to it. On PHP 5.1.2 it reports "Fatal error: Cannot redeclare class". If the "extends CTest3" is removed from file test.inc there is no error.



Reproduce code:
---------------
File 1: test.php
<?
require "test2.inc";
require "test2.inc";
?>

File 2: test2.inc
<?

if (defined("CTEST2")) return;
define("CTEST2", 1);

require "test3.inc";

class CTest2 extends CTest3
{

function CTest2()
{
	print "Test2";
}

}

?>

File 3: ?test3.inc?
<?

if (defined("CTEST3")) return;
define("CTEST3", 1);


class CTest3
{

function CTest3()
{
	print "Test3";
}

}

?>


Expected result:
----------------
No error

Actual result:
--------------
Fatal error: Cannot redeclare class ctest2 in test2.inc on line 16

Patches

Pull Requests

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2006-10-28 23:46 UTC] a79315 at hotmail dot com
Should read: If
the "extends CTest3" is removed from file test2.inc there is no error.
 [2006-10-29 00:02 UTC] tony2001@php.net
>if (defined("CTEST2")) return;
>define("CTEST2", 1);

Classes are declared at compile time, while 'if() return;' is executed at runtime, so this is 100% expected behaviour.
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Sun Dec 22 11:01:30 2024 UTC