Hudzilla.org - the homepage of Paul Hudson
Contents > Arrays Wish List | Report Bug | About Me ]

5.10     Arrays in strings

This is NOT the latest copy of this book; click here for the latest version.

Very often you will want to use an array directly inside a string using code something like this:

<?php
    $myarray
['foo'] = "bar";
    print
"This is from an array: $myarray['foo']\n";
?>

Sadly, that won't work - PHP will consider $myarray to be a variable by itself and consider the ['foo'] part as a normal string that it should tack on to the end of the value of $myarray. The way around this is to use braces { and } around the variable, which is how you tell PHP that you are passing it an array to read from. This next snippet is the right way to do things:

<?php
    $myarray
['foo'] = "bar";-*
    print
"This is from an array: {$myarray['foo']}\n";
?>




<< 5.9 Holes in arrays   5.11 Saving arrays: serialize(), unserialize(), urlencode(), and urldecode() >>
Table of Contents
Want to see this stuff in print? PHP in a Nutshell takes the core topics covered here, adds in thousands of edits from the editorial team and myself, and combines them to make an unbeatable reference for PHP programmers at all levels.



My latest book has hundreds more tips on how to use PHP, Apache, and MySQL, plus Perl, Python, shell scripts, performance tuning, and more!



Top-right shadow
 
Bottom-left shadow Bottom shadow

Comments from other readers
chima/chytons@yahoo.com - 06 Sep 2008

You can still get around it by using concatenation operator as:

$myarray['foo'] = "bar";
print "This is from an array: " . $myarray['foo'] . "\n";

kewlceo - 06 Sep 2008

Right, it's an error. Omit the hyphen and asterisk for the proper output:

This is from an array: bar

A PHP User - 06 Sep 2008

$myarray['foo'] = "bar";-*

Hypen and asterisk? I will admit I'm a bit overwhelmed, but that looks like an error.



Add comment
Please note that by posting a comment here you are committing it to the public domain. This is important so that others can make use of your code themselves, and also so that I can incorporate helpful notes directly into the main text. Comments are limited to 2000 characters in length.

If you are reporting an error in the content, please tell me directly.

Your name/email address:
Your comment:
 
Now, in order to verify that you're a real person, please answer this simple question: what is ten plus three?
The answer is:
(please write in
numbers, eg 19)


Top-right shadow
 
Bottom-left shadow Bottom shadow