在Web Page中包含PHP代码

Posted chaoguo1234

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在Web Page中包含PHP代码相关的知识,希望对你有一定的参考价值。

php代码可以出现在Web Page的任何位置,甚至在html的标签里面也可以。有4中方式在Web Page中包含PHP代码:

 

使用<?php ... ?>标签

<!doctype html>
<html> <head>
<title>This is my first PHP program!</title> </head>
<body> <p>
Look, ma! It‘s my first PHP program:<br /> <?php echo "Hello, world"; ?><br />
How cool is that?
</p> </body>
</html>

 

使用<? ... ?>标签

<? echo "Hello, world"; ?>

这种方式也被称为短标签(short tags)。

要使用这种方式,要么在build PHP的时候使用--enable-short-tags,要么在PHP的配置文件里面配置short_open_tag。

 

使用<% ... %>标签

<% echo "Hello, world"; %>

要使用这种方式,要么在build PHP的时候使用--enable-aps-tags,要么在PHP的配置文件里面配置aps_tags。

 

使用<script>标签

<script language="php">
 echo "Hello, world";
</script>

 

直接echo

如果开启了<? ?>标签,或者<% %>标签,可以在开tag后面紧接=,开启直接echo模式:

//下面两句效果等价
<input type="text" name="first_name" value="<?= "Dawn"; ?>">
<input type = "text" name="first_name" value="<? echo ‘Dawn‘; ?>" >

 

以上是关于在Web Page中包含PHP代码的主要内容,如果未能解决你的问题,请参考以下文章

如何在 Wordpress 自定义帖子类型查询中包含分页

当 listview 行项目中包含隐藏视图时,片段不尊重匹配父高度

如何在 .htaccess 中包含 php 文件?

在 Wordpress the_content() 中包含高级自定义字段 (ACF)

PHP 在函数中包含/要求

Android - 一个选项卡中的多个片段