php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #1533 try yourself...
Submitted: 1999-06-12 16:08 UTC Modified: 1999-06-12 16:12 UTC
From: thomas dot jarosch at styletec dot de Assigned:
Status: Closed Package: Parser error
PHP Version: 3.0.9 OS: Linux+Apache 1.3.6
Private report: No CVE-ID: None
View Add Comment Developer Edit
Welcome! If you don't have a Git account, you can't do anything here.
You can add a comment by following this link or if you reported this bug, you can edit this bug over here.
(description)
Block user comment
Status: Assign to:
Package:
Bug Type:
Summary:
From: thomas dot jarosch at styletec dot de
New email:
PHP Version: OS:

 

 [1999-06-12 16:08 UTC] thomas dot jarosch at styletec dot de
<html>
<body>

<b><center>PHP Development zone</center></b><br>

<?
		$Configurations = array();
		$configfiles = array();
		
		$Configuration["test"] = "should be working fine.";
		$configfiles[1] = "test";
		
		echo "<b>workaround:</b> ";
		$tmp = $configfiles[1];
		echo "$configfiles[1]: $Configuration[$tmp]<br>";

		echo "<b>bug:</b> ";

		// somehow php doesn't handle the array right
		echo "$configfiles[1]: $Configuration[$configfiles[1]]<br>";
		
?>

</body>
</html>

Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [1999-06-12 16:12 UTC] rasmus at cvs dot php dot net
This is a well-known limitation of quoted strings in PHP3.  Simply do:

echo "$configfiles[1]:". $Configuration[$configfiles[1]]."<br>";

You can only put simple things inside quoted strings to be expanded.  Once you start using nested stuff like that you need to do it outside the quoted string.
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Sun May 05 21:01:30 2024 UTC