From:             sqchen at citiz dot net
Operating system: redhat 7.3
PHP version:      5.1.1
PHP Bug Type:     Class/Object related
Bug description:  how to declare a non static method

Description:
------------
as php manual says:
http://www.php.net/manual/en/language.oop5.static.php

if a method is declared as just public, it will be no static method,
right? it not, how to declared a no static method

Reproduce code:
---------------
<?php
class A{
public function foo(){   //no static method?
echo "[foo]\n";}
}

public static function static_foo(){//static method?
echo "[static_foo]";}
}
A::foo();  //[foo]
A::static_foo(); //[static_foo]         
?>


Expected result:
----------------
warning:
[static_foo]

Actual result:
--------------
[foo]
[static_foo]

-- 
Edit bug report at http://bugs.php.net/?id=35738&edit=1
-- 
Try a CVS snapshot (PHP 4.4): 
http://bugs.php.net/fix.php?id=35738&r=trysnapshot44
Try a CVS snapshot (PHP 5.1): 
http://bugs.php.net/fix.php?id=35738&r=trysnapshot51
Try a CVS snapshot (PHP 6.0): 
http://bugs.php.net/fix.php?id=35738&r=trysnapshot60
Fixed in CVS:                 http://bugs.php.net/fix.php?id=35738&r=fixedcvs
Fixed in release:             
http://bugs.php.net/fix.php?id=35738&r=alreadyfixed
Need backtrace:               http://bugs.php.net/fix.php?id=35738&r=needtrace
Need Reproduce Script:        http://bugs.php.net/fix.php?id=35738&r=needscript
Try newer version:            http://bugs.php.net/fix.php?id=35738&r=oldversion
Not developer issue:          http://bugs.php.net/fix.php?id=35738&r=support
Expected behavior:            http://bugs.php.net/fix.php?id=35738&r=notwrong
Not enough info:              
http://bugs.php.net/fix.php?id=35738&r=notenoughinfo
Submitted twice:              
http://bugs.php.net/fix.php?id=35738&r=submittedtwice
register_globals:             http://bugs.php.net/fix.php?id=35738&r=globals
PHP 3 support discontinued:   http://bugs.php.net/fix.php?id=35738&r=php3
Daylight Savings:             http://bugs.php.net/fix.php?id=35738&r=dst
IIS Stability:                http://bugs.php.net/fix.php?id=35738&r=isapi
Install GNU Sed:              http://bugs.php.net/fix.php?id=35738&r=gnused
Floating point limitations:   http://bugs.php.net/fix.php?id=35738&r=float
No Zend Extensions:           http://bugs.php.net/fix.php?id=35738&r=nozend
MySQL Configuration Error:    http://bugs.php.net/fix.php?id=35738&r=mysqlcfg

Reply via email to