Blogger Information
Blog 36
fans 1
comment 0
visits 28829
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
php基础1-九期线上班
WJF
Original
532 people have browsed it

1. 搭建环境



1573481336879865.png1573481336991684.png






2. 对PHP的理解



  • PHP是服务器端的脚本编程语言 

  • 使用.php文件后缀 和 <php ?> 标记 的所有PHP文件 PHP文件内可以包含HTML代码 CSS代码 JS代码 (反之HTML、CSS、JS不支持运行PHP代码)

  • 1573559945169494.jpg



实例

<?php
# 单行注释
// 单行注释
/*
 多行注释
 */
    $my_name = '33703259@qq.com';

    echo $my_name;

    echo '<br>';

    $MyName = 'WJF';

    echo $MyName;

    echo '<br>';

    $myName = 'WJF88655';

    echo $myName;
?>

运行实例 »

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








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