Blogger Information
Blog 35
fans 0
comment 0
visits 22343
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
php基础知识(基础的语法练习)—2018年8月22日 12:31:45
Hi的博客
Original
706 people have browsed it

根据昨晚所学的知识对php的基础代码一点练习

以下是我的代码

实例

<?php
$T1="我是一个测试";
$T2='我是一个测试';
$money='999999';
$money1='我有'.$money.'钱';
$T3="我有{$money}的钱";
$T4="我\n想前面\t有\r个\"回车\"";

echo $T1,'<br>',$T2;
echo '<hr>',$money1;
echo '<hr>',$T3,'<br>',$T4;
echo '<hr>';

echo <<<HEREDOC
{$T3},<br>这是一个双引号会解析里面的变量
HEREDOC;
echo '<hr>';
echo <<<'NOWDOC'
这是一个单引号不会输出变量,{$T3}
NOWDOC;
?>

运行实例 »

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

以下是我的手抄

2018-8-21手抄.jpg

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