标签: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‘; ?>" >
标签:type lang 开启 配置 mil 标签 ble tag world
原文地址:https://www.cnblogs.com/chaoguo1234/p/9539365.html