Basic PHP Programming Question: Download PHP PDF

How Many Ways to Include Array Elements in Double-Quoted Strings using PHP?

Tweet Share WhatsApp

Answers:

Answer #1There are 2 formats to include array elements in double-quoted strings in PHP:

► "part 1 $array[key] part 2" - This is called simple format. In this format, you can not specify the element key in quotes.
► "part 1 {$array['key']} part 2" - This is called complex format. In this format, the array element expression is specified in the same way as in a normal statement.

Here is a PHP script example of different ways to include variables in double-quoted strings:

<?php
$fruits = array('strawberry' => 'red', 'banana' => 'yellow');
echo "A banana is $fruits[banana]. ";
echo "A banana is {$fruits['banana']}. ";
?>

This script will print:

A banana is yellow.
A banana is yellow.

"A banana is $fruits['banana']. " will give you a syntax error.

Answer #2echo "A banana is ".$fruit[banana].;
echo "A banana is ".$fruit['banana']." .";

Download PHP PDF Read All 139 PHP Questions
Previous QuestionNext Question
How Many Ways to Include Variables in Double-Quoted Strings in PHP?How To Access a Specific Character in a String using PHP?