Jump to content

Bull shit unexpected T_ENCAPSED_AND_WHITESPACE


Recommended Posts

When echoing array values in a double quoted string, you have two options:

 

1. String concatenation

 

echo "Some string " . $array['key'];

 

2. Using inline curly braces to force interpolation

 

echo "Some string {$array['key']}";

There is actually 3.

echo "some string $array[key]". //without quotes around the key

Choice #3 would tend to confuse a noob into thinking that he should not put quotes around associative array names at all, thereby causing problems with undefined constant errors, and introducing inconstant use of php variable syntax.

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.