| marcot@php.net 2005-09-26, 3:55 am |
| ID: 34634
Updated by: marcot@php.net
Reported By: djmaze at cpgnuke dot com
-Status: Open
+Status: Verified
Bug Type: Documentation problem
Operating System: Linux
PHP Version: 5.0.5
Previous Comments:
------------------------------------------------------------------------
[2005-09-25 16:30:21] derick@php.net
This is a documentation problem.
------------------------------------------------------------------------
[2005-09-25 15:18:43] djmaze at cpgnuke dot com
Description:
------------
The manual at following address doesn't explain what kind of constants
you may define.
http://www.php.net/manual/en/langua...5.constants.php
I've tried to use bits but PHP 5 generates a parse errors on those as
well.
Either add in the documentation which are allowed or extend the use of
const.
Reproduce code:
---------------
<?php
class bar
{
const ASSOC = 1<<0; # CRASH
const SQL_ASSOC = MYSQL_ASSOC; # Works
}
?>
Expected result:
----------------
A constant bit
Actual result:
--------------
Parse error: syntax error, unexpected T_SL, expecting ',' or ';'
------------------------------------------------------------------------
--
Edit this bug report at http://bugs.php.net/?id=34634&edit=1
|