摘要: php的环境一般分为两种 1.WAMP 2.LAMP WAMP指的是Windows Apache Mysql PHP LAMP指的就是Linux Apache Mysql PHP Windows的集成WAMP的软件有 PHPstudy XAMP WAMPserver LAMP 就自己安装吧 阅读全文
posted @ 2017-05-10 10:39 PHPHowToLearn 阅读(95) 评论(0) 推荐(0)
摘要: 1.php的代码应该写在 <?php 这里写代码块 ?> 2.php的注释共有三种 1)单行注释 // 2)单行注释 # 3)多行注释 /* 这里是注释的内容 */ 3.在纯php代码的文件里面只需在开头写<?php 即可编写php代码 4.在和html或者css,javascript混合编写的时候 阅读全文
posted @ 2017-05-10 10:32 PHPHowToLearn 阅读(90) 评论(0) 推荐(0)