我正在使用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
中实例化。