语言参考

三日php之路 -- 第一天(php语言参考)

天涯浪子 提交于 2019-12-23 10:15:57
【推荐】2019 Java 开发者跳槽指南.pdf(吐血整理) >>> 一、基本语法 (1)PHP标记 <?php echo "Hello World!"; // 当文件为纯PHP时,最好在末尾删除PHP结束标记 //?> (2)从HTML中分离 // 在一对开始和结束之外的内容,都会被PHP解释器忽略。也就是html标签和PHP代码混合的那种,跟jsp,asp一样... <p>This is going to be ignored by PHP and displayed by the browser.</p> <?php echo 'While this is going to be parsed.'; ?> <p>This will also be ignored by PHP and displayed by the browser.</p> // 使用条件,高级分离 <?php if ($expression == true): ?> This will show if the expression is true. <?php else: ?> Otherwise this will show. <?php endif; ?> (3)指令分隔符,注释 PHP需要在每个语句后面用分隔符结束指令。 注释: // 或 /* ... */ 但是,*/ 会匹配最近的那个,切记