Blogger Information
Blog 17
fans 0
comment 0
visits 12689
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
php基本语法以及数据类型之字符串-2018年4月11日
在路上的博客
Original
680 people have browsed it

php基本语法:

<?php

//php代码 

echo 'hello';

?>

每行php代码结束后用;隔开,如果是纯php代码,后面的?>可以省略,如果是php和html混在一起,就不能省略!

PHP 文件可包含文本、HTML、JavaScript代码和 PHP 代码!如果文件中包含php代码,文件扩展名必须是  .php 


单行注释// 或者#  多行注释/*  */

变量

$开始,后面跟上英文下划线_,不能以数字开头,变量中不能有特殊字符!变量是区分大小写的


单引号,双引号

1单引号不解析变量,双引号可以!

2在双引号里面插入变量,变量后面如果有英文或中文字符,它会把这个字符和变量拼接起来,视为一整个变量。一定要在变 量后面接上特殊字符,例如空格等分开。如果不想有空格,可以用花括号抱起来例如:{$name}

3转义字符 \  双引号解析转义字符,单引号不解析转义字符。但,单引号能解析\' 和\

nl2br()

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