php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #14175 it is possible to assign a invalid variable-name
Submitted: 2001-11-22 07:57 UTC Modified: 2001-11-22 08:00 UTC
From: gerw at dds dot nl Assigned:
Status: Not a bug Package: Variables related
PHP Version: 4.0.5 OS: win98, freebsd
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: gerw at dds dot nl
New email:
PHP Version: OS:

 

 [2001-11-22 07:57 UTC] gerw at dds dot nl
<?php
   $1 = "hello";
?>
This will produce an error.
That isn't very strange ;-)

But....

<?php
   ${"1"} = "hello";
?>

This is allowed.
Isn't this a bug?

Patches

Pull Requests

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2001-11-22 08:00 UTC] derick@php.net
Nope, this is not a bug, but expected behavior. You can also uses space and interpunction marks like this.
However, it's sitll veyr ugly.

Derick
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Sat Dec 21 16:01:28 2024 UTC