PHP打印功能打印变量名,而不是它们的值和一些HTML代码

时间:2019-05-15 17:54:57

标签: php phpstorm

我正在使用PHP创建自己的网页,并且在使用print函数时遇到问题。它打印变量名而不是值,还打印引号和分号(这是PHP代码的一部分)。

我在Apache服务器上使用PhpStorm。

 <h1>Little Boy Who?</h1>
    <?
    include 'prompts.php';
    $color = "red";
    print "Little Boy $color, come blow your $instrument!<br>
The $anim1's in the $place, the $anim2's in the $vegetable.<br>
Where's the boy that looks after the $anim3?<br>
He's under the $structure, $action.";
    ?>

某些变量在prompts.php中实例化。

Here is actual output

0 个答案:

没有答案