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
 [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

Add a Patch

Pull Requests

Add a Pull Request

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 Apr 20 04:01:28 2024 UTC