Blogger Information
Blog 18
fans 0
comment 0
visits 14045
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
第4期学习班-2.20作业-【PHP基础知识】-【PHP的变量】
八七乱乱
Original
708 people have browsed it

PHP 是一种创建动态交互性站点的强有力的服务器端脚本语言。

PHP可以快速生成HTML文档。

PHP文档格式:

1、PHP需要配置运行环境,推荐安装集成环境包,国内phpstudy,国外有wamp,xampp等。

2、PHP文档的后缀名为 *.php 。

3、PHP可以混编到 html 中,以<?php   ?>标签中的内容为PHP语句。

4、PHP中设置变量,变量名前缀需要加上$符号。

实例1.PHP基本输入-hello wolrd!

<!DOCTYPE html> 
<html> 
<body> 

<?php 
echo "Hello World!"; 
//echo 是php的输出语句
?> 

</body> 
</html>

运行实例 »

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

实例

<?php
$x=5;
//设置变量名 x 的值为 5
$y=6;
//设置变量名 y 的值为 6
$z=$x+$y;
//设置变量 Z 的值 为变量 x 和变量 y 的值的集合。
echo $z;
//输出变量 y 的值。 
?>

运行实例 »

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

 

 

Correction status:Uncorrected

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