php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #12493 Class bug..
Submitted: 2001-07-31 14:46 UTC Modified: 2001-07-31 14:49 UTC
From: dengdeng at hitel dot net Assigned:
Status: Not a bug Package: Class/Object related
PHP Version: 4.0.6 OS: Win2k
Private report: No CVE-ID: None
View Add Comment Developer Edit
Anyone can comment on a bug. Have a simpler test case? Does it work for you on a different platform? Let us know!
Just going to say 'Me too!'? Don't clutter the database with that please !
Your email address:
MUST BE VALID
Solve the problem:
37 - 22 = ?
Subscribe to this entry?

 
 [2001-07-31 14:46 UTC] dengdeng at hitel dot net
Exam1 : 

class A {

	function b() {
		echo("Hello?");
	}

}

$Ac = new A;

$Ac->b();
///////////////////////////////////////////////////////////
Exam2 : 

class A {

	function a() {
		echo("Hello?");
	}

}

$Ac = new A;

$Ac->a();
///////////////////////////////////////////////////////////

Exam1 code is once run b function but Exam2 code is two run a function. It's bug?? or my miss?? >_<


Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2001-07-31 14:49 UTC] jeroen@php.net
Not a bug. a() is the constructor function of class A (remember that function names are case-insensitive).

See http://www.php.net/manual/en/language.oop.constructor.php
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Fri Mar 29 00:01:28 2024 UTC