码迷,mamicode.com
首页 > Web开发 > 详细

在Web Page中包含PHP代码

时间:2018-08-26 23:38:01      阅读:359      评论:0      收藏:0      [点我收藏+]

标签:type   lang   开启   配置   mil   标签   ble   tag   world   

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代码

标签:type   lang   开启   配置   mil   标签   ble   tag   world   

原文地址:https://www.cnblogs.com/chaoguo1234/p/9539365.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!