php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #73494 Class name As Const
Submitted: 2016-11-11 08:36 UTC Modified: 2016-11-11 08:41 UTC
From: takeo dot tanha at livce dot com Assigned:
Status: Duplicate Package: Class/Object related
PHP Version: 7.0.13 OS:
Private report: No CVE-ID: None
View Add Comment Developer Edit
Welcome! If you don't have a Git account, you can't do anything here.
You can add a comment by following this link or if you reported this bug, you can edit this bug over here.
(description)
Block user comment
Status: Assign to:
Package:
Bug Type:
Summary:
From: takeo dot tanha at livce dot com
New email:
PHP Version: OS:

 

 [2016-11-11 08:36 UTC] takeo dot tanha at livce dot com
Description:
------------
in example we have a class (bar) that have a static function that do somthing.
when in other class (foo) we Define bar class name as Const and when we want use it to run static  function we have an error : 

Parse error: syntax error, unexpected '::' (T_PAAMAYIM_NEKUDOTAYIM) in index.php on line 7

Test script:
---------------
class foo
{
	const MY_CONST = "bar";
	public function __construct()
	{
		self::MY_CONST::message();
	}
}
class bar
{
	public static function message()
	{
		echo "hello";
	}
}
new foo();

Expected result:
----------------
Parse error: syntax error, unexpected '::' (T_PAAMAYIM_NEKUDOTAYIM) in index.php on line 7


Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2016-11-11 08:40 UTC] takeo dot tanha at livce dot com
-Status: Open +Status: Closed
 [2016-11-11 08:40 UTC] takeo dot tanha at livce dot com
go to this : https://bugs.php.net/bug.php?id=73495
 [2016-11-11 08:41 UTC] requinix@php.net
-Status: Closed +Status: Duplicate
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Thu Mar 28 15:01:29 2024 UTC