php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #27008 Every class method can be called as static
Submitted: 2004-01-22 13:31 UTC Modified: 2004-01-25 01:14 UTC
From: hoesh at dorsum dot hu Assigned:
Status: Closed Package: Scripting Engine problem
PHP Version: 5CVS-2004-01-22 (dev) OS: *
Private report: No CVE-ID: None
 [2004-01-22 13:31 UTC] hoesh at dorsum dot hu
Description:
------------
Any method of any class can be called staticly. Internals and scripted ones too.
* TipOfTheDay *
Call any internal class's constructor from outside of object. As object doesn't exists, and ZE2 calls the internal constructor, process crashes immadiately.


Reproduce code:
---------------
<? domdocument::domdocument(); ?>
, or
<? domdocument::__construct(); ?>
both works, to crash the process.
<?
class check
{
  function not_static()
  {
    echo "Impossible, but works!";
  }
}
check::not_static();

Expected result:
----------------
Warning or fatal error.

Actual result:
--------------
Crash.

Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2004-01-25 01:14 UTC] sniper@php.net
This bug has been fixed in CVS.

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.

You can still call any method statically. If it's not possible in the specific case, an error will be output.

 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Tue Mar 19 04:01:31 2024 UTC