⑴ php if可以插入html嗎
可以的,比如:
<?php
$a=true;
if($a){
?>
<ahref="#">我就在html的a標簽裡面</a>
<?php
}
?>
⑵ php插入html文件
PHP插入或者引入外部文件的函數有:require,require_once,include,include_once等;插入HTML文件使用其中任意一個函數都可以;
比如.php要插入zd.html文件,示例如下:
<!DOCTYPEhtmlPUBLIC"-//W3C//DTDHTML4.01Transitional//EN""http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<metahttp-equiv="Content-Type"content="text/html;charset=UTF-8">
<title>HTML</title>
</head>
<body>
<fontcolor="red">html部分</font>
</body>
</html>
<?php
echo"-----------插入的HTML內容如下----------------";
echo"<br/>";
require'test.html';
?>
運行效果如下:
⑶ thinkphp中html頁面怎麼引入html頁面
8.7 包含文件
可以使用Include標簽來包含外部的模板文件,使用方法如下:
include標簽(包含外部模板文件)
閉合
閉合標簽
屬性
file(必須):要包含的模板文件,支持變數
示例:
1、 使用完整文件名包含
格式:<include file="完整模板文件名" />
例如:
<include file="./Tpl/default/Public/header.html" />
這種情況下,模板文件名必須包含後綴。使用完整文件名包含的時候,特別要注意文件包含指的是伺服器端包含,而不是包含一個URL地址,也就是說file參數的寫法是伺服器端的路徑,如果使用相對路徑的話,是基於項目的入口文件位置。
2、包含當前模塊的其他操作模板文件
格式:<include file="操作名" />
例如 導入當前模塊下面的read操作模版:
<include file="read" />
操作模板無需帶後綴。
3、 包含其他模塊的操作模板
格式:<include file="模塊名:操作名" />
例如,包含Public模塊的header操作模版:
<include file="Public:header" />
4、包含其他模板主題的模塊操作模板
格式:<include file="主題名:模塊名:操作名" />
例如,包含blue主題的User模塊的read操作模版:
<include file="blue:User:read" />
5、 用變數控制要導入的模版
格式:<include file="$變數名" />
例如
<include file="$tplName" />
給$tplName賦不同的值就可以包含不同的模板文件,變數的值的用法和上面的用法相同。
無論你使用什麼方式包含外部模板,Include標簽支持在包含文件的同時傳入參數,例如,下面的例子我們在包含header模板的時候傳入了title和keywords變數:
<include file="header" title="ThinkPHP框架"keywords="開源WEB開發框架"/>
就可以在包含的header.html文件裡面使用var1和var2變數,方法
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>[title]</title>
<meta name="keywords" content="[keywords]" />
</head>
注意:由於模板解析的特點,從入口模板開始解析,如果外部模板有所更改,模板引擎並不會重新編譯模板,除非在調試模式下或者緩存已經過期。如果部署模式下修改了包含的外部模板文件後,需要把模塊的緩存目錄清空,否則無法生效。
⑷ html中使用php 的變數
html標簽使用php中的變數方法如下:
一、如果html標簽中使用php變數,提示:Undefined index: uid in /var/www//list.php,list.php的具體代碼如下:
<?php
require'redis.php';
for($i=0;$i<=($redis->get("userid"));$i++){
$data[]=$redis->hgetall("user:".$i);
}
/*var_mp($data)的結果如下:
array(size=3)
0=>
array(size=0)
empty
1=>
array(size=4)
'uid'=>string'1'(length=1)
'username'=>string'jjj'(length=3)
'password'=>string'123'(length=3)
'age'=>string'20'(length=2)
2=>
array(size=4)
'uid'=>string'2'(length=1)
'username'=>string'lamp'(length=4)
'password'=>string'123'(length=3)
'age'=>string'20'(length=2)
*/
?>
<tableborder="1">
<caption>userlist</caption>
<tr>
<th>uid</th>
<th>username</th>
<th>age</th>
</tr>
<?phpforeach($dataas$v){?>
<tr>
<td><?phpecho$v['uid']?></td>
<td><?phpecho$v['username']?></td>
<td><?phpecho$v['age']?></td>
</tr>
<?php}?>
</table>
這時在echo 前 isset 下就可以了,代碼如下:
<?php$a=10;if(isset($a)){echo"這個變數存在";}else{echo"這個變數不存在";}?>
二、 php可以和html混編的 ,如下圖所示