php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #50068 const problem
Submitted: 2009-11-03 20:16 UTC Modified: 2009-11-04 13:48 UTC
From: jachym dot tousek at gmail dot com Assigned:
Status: Not a bug Package: Scripting Engine problem
PHP Version: 5.3.1RC3 OS: Windows 7
Private report: No CVE-ID: None
Welcome back! If you're the original bug submitter, here's where you can edit the bug or add additional notes.
If you forgot your password, you can retrieve your password here.
Password:
Status:
Package:
Bug Type:
Summary:
From: jachym dot tousek at gmail dot com
New email:
PHP Version: OS:

 

 [2009-11-03 20:16 UTC] jachym dot tousek at gmail dot com
Description:
------------
const is not working

Reproduce code:
---------------
<?php
const ROOT_DIR = __DIR__ . '/..'; //parse error


<?php
define('ROOT_DIR',__DIR__ . '/..'); //works fine



Patches

Pull Requests

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2009-11-03 21:11 UTC] ksingla@php.net
I think this behavior is by design. const expressions are evaluated at compile time. So only few operations are supported in a const expression and string concatenation is not one of those. I could repro this in PHP 5.2 (after putting it under a class).
 [2009-11-03 21:46 UTC] felipe@php.net
Thank you for taking the time to write to us, but this is not
a bug. Please double-check the documentation available at
http://www.php.net/manual/ and the instructions on how to report
a bug at http://bugs.php.net/how-to-report.php


 [2009-11-03 22:26 UTC] jachym dot tousek at gmail dot com
Well i've checked [http://www.php.net/manual/en/language.constants.syntax.php] and also updated from 5.3.0 to 5.3.1RC3 before sending this report, but there is nothing about const name = 'value'; being different from define('name','value'); and i can not understand it even now.
 [2009-11-04 01:44 UTC] scottmac@php.net
const is a compile time constant and only allows simple scalar values.

define is a constant resolved at runtime and it allows full expressions when being defined.
 [2009-11-04 13:48 UTC] jachym dot tousek at gmail dot com
OK i get it now, but still it should be in documentation.
 
PHP Copyright © 2001-2025 The PHP Group
All rights reserved.
Last updated: Wed Jul 09 23:01:33 2025 UTC