Blogger Information
Blog 5
fans 0
comment 0
visits 5688
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
php的第一课
JQ的博客
Original
788 people have browsed it
  1. 将php工具箱或其它类似工具正确安装好,并写出安装步骤与注意事项

    php工具箱的安装:应课程要求,主要是切换到php7版本需要安装IIS7费了我很多的时间。设置好IIS7后设置站点,端口,同时在php工具箱的“其他选项菜单”中设置站点,域名,端口。最后修改一下hosts文件。

2. 用自己语言来描述php的功能与工作原理

    php,为超文本语言,将提交到服务器的php文件进行解析返回html到客户单,这就是我如此肤浅的看法。


3. 创建一个html页面,将其中的数据,用php变量替换并显示出来

    

<!DOCTYPE html>
<html>
<head>
 <meta charset="UTF-8">
 <title><?="我的第一个纯手工PHP";?></title>
 <style type="text/css">
  .box{
   width:300px;
   height:300px;
   border:1px solid #red;
   background-color: pink;
   margin:100px auto;
   padding: 20px;
  }
  span{color:red;}
 </style>
</head>
<body>
 <?php
  define("THEFIRST", "写一个常量");
  $second='写一个变量';
  $third='再在PHP中混排个html吧';
  $four=[
   'name' =>'div',
   'class' =>'box',
   'content'=>'我来介绍一下我自己'
  ];
 ?>
 <div>

盒子里面放一个php常量<br>
  它就是:
  <strong><?=THEFIRST?></strong><br>  

盒子里面放一个php变量<br>
  它就是:
  <strong><?php echo $second ?></strong><br>
  
  <?php
  echo "<span>".$third."</span>"
  ?>
  <br>
  <strong><?=$four['content']?></strong><br>
  我叫:<?=$four['name']?>,<br>
  我的class名是:<?=$four['class']?>,<br>
  <h3>遍历一下吧:</h3>
  <?php
   foreach ($four as $comeon => $baby) {
    echo $comeon.':'. $baby.'<br>';
   }
  ?>

 </div>
</body>
</html>

 

 

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