php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #37614 Class name lowercased in error message
Submitted: 2006-05-27 14:20 UTC Modified: 2006-05-27 20:29 UTC
From: sebastian@php.net Assigned: helly (profile)
Status: Closed Package: Scripting Engine problem
PHP Version: 5.* OS: *
Private report: No CVE-ID: None
 [2006-05-27 14:20 UTC] sebastian@php.net
Description:
------------
The class name in the "Cannot redeclare class ..." error message is lowercased and not the original one.

Reproduce code:
---------------
<?php
class Foo {}
class Foo {}
?>

Expected result:
----------------
Fatal error: Cannot redeclare class Foo in /home/sb/test.php on line 3

Actual result:
--------------
Fatal error: Cannot redeclare class foo in /home/sb/test.php on line 3

Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2006-05-27 20:29 UTC] johannes@php.net
This bug has been fixed in CVS.

Snapshots of the sources are packaged every three hours; this change
will be in the next snapshot. You can grab the snapshot at
http://snaps.php.net/.
 
Thank you for the report, and for helping us make PHP better.
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Tue Mar 19 09:01:30 2024 UTC