当前位置:Gxlcms > PHP教程 > PHP从头开始-1

PHP从头开始-1

时间:2021-07-01 10:21:17 帮助过:29人阅读

基本语法

标记

起始标记:
结束标记:?>
php会解析二者之间的代码。如果是纯php代码,最少删除结束标记,防止意外输出。

从HTML中分离

当php解释器遇到?>时就原样输出后面的内容。

条件语句的高级分离术

条件语句是一个例外,php解释器会判断输出哪些,跳过哪些。当条件未达成时会直接跳过该段条件语句块。

if ( $expression  ==  true ):  ?>
  This will show if the expression is true.
else:  ?>
  Otherwise this will show.
endif;  ?>

输出大段文本的时候,跳出php解析模式比使用echo输出更有效率。

开始和结束标记

可以在 PHP 中使用四对不同的开始和结束标记。其中两种,

指令分隔符

每个语句后面用分号结束指令。——》;

注释

单行注释:
//this is a one-line c++ style comment
单行注释:
#this is a one-line shell style comment
多行注释:

/*thisis a multi line commment
yet another line of comment*/

').addClass('pre-numbering').hide(); $(this).addClass('has-numbering').parent().append($numbering); for (i = 1; i <= lines; i++) { $numbering.append($('
  • ').text(i)); }; $numbering.fadeIn(1700); }); });

    以上就介绍了PHP从头开始-1,包括了未达方面的内容,希望对PHP教程有兴趣的朋友有所帮助。

  • 人气教程排行