Blogger Information
Blog 15
fans 0
comment 0
visits 9736
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
PHP变量入门知识作业
的博客
Original
579 people have browsed it

实例

<?php
$me= '我是超人';
$skill = '我会飞';
$mykill = "{$me}{$skill }";

echo $mykill;
echo '<br>';

echo '他们说:\'我是超人我会飞\'';
echo '<br>';
echo "他们说::\"我是超人我会飞\"";
echo '<br>';
$heredoc = <<< HEREDOC
他们说:{$skill}{$mykill}
HEREDOC;
echo $heredoc;
echo '<br>';
$nowdoc = <<< 'NOWDOC'
<h3>$me</h3> \r\n '$skill'
NOWDOC;
echo $nowdoc;

?>

运行实例 »

点击 "运行实例" 按钮查看在线实例

1_20180208140225_a5lvs.png

Correction status:qualified

Teacher's comments:
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post