From:             phpbugs at colin dot guthr dot ie
Operating system: Linux
PHP version:      Irrelevant
PHP Bug Type:     Documentation problem
Bug description:  Example 19.13 shows invalid syntax

Description:
------------
On the following manual page:
http://www.php.net/manual/en/language.oop5.paamayim-nekudotayim.php

Example 19.13 gives the code listed below. This causes a parse error.

Reproduce code:
---------------
<?php
class OtherClass extends MyClass
{
    public static $my_static = 'static var';

    public static function doubleColon() {
        echo parent::CONST_VALUE . "\n";
        echo self::$my_static . "\n";
    }
}

$classname = 'OtherClass';
echo $classname::doubleColon();

OtherClass::doubleColon();
?> 

Expected result:
----------------
I would expect $classname::doubleColon() call to succeed according to the
docs.

The alternative [call_user_func(array($classname, 'doubleColon'))] is not
quite as neat in code.

Judging by comments on the above linked page this has not worked since
2005!

Actual result:
--------------
PHP Parse error:  syntax error, unexpected T_PAAMAYIM_NEKUDOTAYIM,
expecting ',' or ';' in file.php on line 13


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

Reply via email to