PHP的基本语法:
PHP以<?php 开始 ,以 ?>结束。
默认扩展名后缀为.php。
PHP每行代码结束用分号(;)结束。
PHP有两种输出方式echo和print;
echo 和 print的区别
。echo 可以输出一个或多个字符;
。print 只允许输出一个字符串,返回值总为1;
比较:echo比print输出速度快。
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!