php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #15402 include of parent class
Submitted: 2002-02-06 06:03 UTC Modified: 2002-06-01 06:56 UTC
From: av at brainbits dot de Assigned:
Status: Closed Package: Class/Object related
PHP Version: 4.1.1 OS: SuSE 7.2
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: av at brainbits dot de
New email:
PHP Version: OS:

 

 [2002-02-06 06:03 UTC] av at brainbits dot de
Hi , 
i have a problem with follwing code :

1. File "A.php"
<?php
class A {
	function A(){
		echo "jo";
	}
}
?>

2. File "B.php"
<?php
require_once("A.php");
class B extends A {
	function B(){
		echo "jojo";
	}
}
?>

3. File
<?php
require_once("B.php");
$b=new B;

Error is :
Fatal error : cannot redeclare class A:B on line 2 in B.php


include_path is ok , what is a problem ?

best regards
Alexander Vasiliev 

Patches

Pull Requests

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2002-02-06 06:48 UTC] yohgaki@php.net
The bug system is not the appropriate forum for asking support
questions. For a list of a range of more appropriate places to ask
for help using PHP, please visit http://www.php.net/support.php
 [2002-02-06 06:50 UTC] av at brainbits dot de
*g*
u mean ,
it is not a bug ? ;-)

 [2002-02-06 20:09 UTC] yohgaki@php.net
It works ok to me, that's the reason why I made this report bogus.
Since it seems you really have this problem. I reopened :)

Could anyone take care of this report? I would like to spend more time for
problems in output control....
 [2002-02-08 02:22 UTC] derick@php.net
Works for me on both 4.0.6, 4.1.1 and 4.2.0 (on Linux).
 [2002-06-01 06:56 UTC] mfischer@php.net
Works here as well, suspecting miss-configured system, closing.
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Sun Dec 22 02:01:28 2024 UTC