Ask Question
29 December, 02:35

When double quotes are used to assign values to string variables, the PHP interpreter must check the entire string to see if it contains any variables that need to be inserted into the string. This process is called:

+4
Answers (1)
  1. 29 December, 02:59
    0
    Interpolation string.

    Explanation:

    The proces of adding the variable in middle the string. The interpolation Replace the value of the Variable when the string data is processed. In the Interpolation process the variable is permitted with string containing double quotes. In the interpolation string the interpreter check the entirely string that the variable in middle the string.

    Following is the example of interpolation string in Php

    $n1 = "RAM";

    echo "hello $name"; / / output

    Output:

    hello RAM
Know the Answer?
Not Sure About the Answer?
Find an answer to your question 👍 “When double quotes are used to assign values to string variables, the PHP interpreter must check the entire string to see if it contains ...” in 📗 Computers & Technology if the answers seem to be not correct or there’s no answer. Try a smart search to find answers to similar questions.
Search for Other Answers