Correction status:qualified
Teacher's comments:
今天学了php的环境搭建和基本的语法基础。
<?php $name='中国'; $title1= '$name欢迎你'; $title2="{$name}欢迎你"; echo $title1,'<br>',$title2; echo '<hr>'; $title3='php\'中文网\'\n'; $title4="php\'中文网\'\nphp"; echo $title3,'<br>',$title4; echo "<br>"; echo <<<"HEREDOC" $title2,\r HEREDOC; echo "<br>"; echo <<<NOWDOC $title1; NOWDOC;
点击 "运行实例" 按钮查看在线实例