Blogger Information
Blog 15
fans 0
comment 1
visits 7962
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
php变量语法基础----2018年4月12日2点
银河的博客
Original
395 people have browsed it

实例

<meta charset="UTF-8">
<?php

$demo1 = '我是变量1';
$demo2 = "这里加了一个 $demo1 是什么东西?";
$demo3 = '我是原汁原味的输出 \'$demo1\'';
$demo4 = "又或者这样,\$demo1 还是原来的样子";

echo $demo1;
echo '<br>';
echo $demo2;
echo '<br>';
echo $demo3;
echo '<br>';
echo $demo4;
echo '<br>';

?>

运行实例 »

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


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