From:             webmaster at adriaportal dot com
Operating system: Windows NT 5.2 build 3790
PHP version:      5.2.6
PHP Bug Type:     Compile Failure
Bug description:  unwanted reaction of compiler engine

Description:
------------
Error by using method with name use(); 
!!!! No error with method name changed to _use() !!!!


Reproduce code:
---------------
<?php

class Block {

 private $block = "";
 private $value = "";
 private $name  = "";
 private $out   = "";
 
 function __construct($blockName) {
  $this->name = $blockName;
 }

 public function use() {
  $this->value = $this->block;
  $this->out   = "";
 }

}

?>


Expected result:
----------------
No error.

The word USE is very USED by programming. Here is used in a class block of
code as name of method, bud here is a conflict with may by documented
keyword use in PHP. The namespace use this keyword.

Actual result:
--------------
Parse error: syntax error, unexpected T_USE, expecting T_STRING in
C:\webs\test\bug.php on line 15


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

Reply via email to