Blogger Information
Blog 10
fans 0
comment 0
visits 5297
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
全栈工程师培训之PHP部分:第1章 4_11PHP基本语法
相宇的博客
Original
581 people have browsed it

第1章 4_11PHP基本语法

代码:

实例

<?php
/**
 * 变量的四大特点:有名字,不要乱起名;有作用域,势力范围,在什么情况下能访问;有类型,有运算规则。
 */
$siteName='昆仑书院';
echo $siteName;
echo '<hr>';
$name = '黄帝';
$Name = '传说';

echo "$name",'有',$Name;

echo $_SERVER['SCRIPT_FILENAME']; //查看当前的脚本文件名
echo '<hr>';
echo $_SERVER['HTTP_USER_AGENT']; 


/**
 * 定界符:单引号,双引号
 * 1、单引号:内容原样输出
 */
$huaTuo ='华佗出诊';
$title ="{$huaTuo}不小心遇到了曹操";

echo $title;

//特殊字符 \n
echo '<hr>';
//单引号不会解析特殊字符,原样输出
echo '明天会下雨么? \n 会的';
echo '<hr>';
echo "明天会打雷么? \n 会不会啊?";
echo '<hr>';
echo nl2br ("明天会打雷么? \n 会不会啊?");
echo '<hr>';

$siteName = '华佗';
// $heredoc = <<< HEREDOC  //这一行怎么都不对。蒙圈。。。。。
$heredoc=<<<HEREDOC
{$siteName}出诊时遇到曹操就是悲剧。\n 
这是一个医者的悲哀。 
HEREDOC;
echo  nl2br($heredoc);

echo '<hr>';
//感谢张君同学帮我写对了!
$siteName='华佗出诊';
$heredoc=<<<HEREDOC
{$siteName}遇到曹操就是悲剧.\n
这是一个医者的悲剧.
HEREDOC;
echo nl2br($heredoc);


$nowdoc = <<< 'NOWDOC'
<h3>$siteName</h3> \r\n '$heredoc写不对快疯了'
NOWDOC;

echo '<hr>';
echo $nowdoc;

运行实例 »

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


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