PHP Array Exercises : Display array values within a string
PHP Array: Exercise-1 with Solution
$color = array('white', 'green', 'red', 'blue', 'black');
Write a script which will display the following string
"The memory of that scene for me is like a frame of film forever frozen at that moment: the red carpet, the green lawn, the white house, the leaden sky. The new president and his first lady. - Richard M. Nixon"
and the words 'red', 'green' and 'white' will come from $color.
Sample Solution:
PHP Code:
<?php
// Define an array of colors
$color = array('white', 'green', 'red', 'blue', 'black');
// Display a sentence using elements from the color array
echo "The memory of that scene for me is like a frame of film forever frozen at that moment: the $color[2] carpet, the $color[1] lawn, the $color[0] house, the leaden sky. The new president and his first lady. - Richard M. Nixon" . "\n";
?>
Output:
The memory of that scene for me is like a frame of film fore ver frozen at that moment: the red carpet, the green lawn, t he white house, the leaden sky. The new president and his fi rst lady. - Richard M. Nixon
Flowchart:
PHP Code Editor:
Contribute your code and comments through Disqus.
Previous: PHP Array Exercises Home.
Next: $color = array('white', 'green', 'red'')
Write a PHP script which will display the colors in the following way.
What is the difficulty level of this exercise?
Test your Programming skills with w3resource's quiz.
It will be nice if you may share this link in any developer community or anywhere else, from where other developers may find this content. Thanks.
https://w3resource.com/php-exercises/php-array-exercise-1.php
- Weekly Trends and Language Statistics
- Weekly Trends and Language Statistics