首頁 >後端開發 >php教程 >PHP Smarty 定界符衝突該如何處理

PHP Smarty 定界符衝突該如何處理

墨辰丷
墨辰丷原創
2018-05-16 13:47:571817瀏覽

這篇文章主要介紹PHP Smarty 定界符衝突該如何處理,有興趣的朋友參考下,希望對大家有幫助。

預設定界符"{"與css和js中的"{"衝突,該如何處理?
1. 所有以{ 開頭的地方,都空一格。 (Smarty只會解析定界符內的內容,且左定界符後不能有空格)
2. 將css和js以外部的方式引入。 (Smarty不會解析外部檔案)
3. 使用內建函數 literal。
4. 更改定界符。

解決衝突最好的方式:外部引入css和js,對於內部出現的使用literal。

index.php(後端):

<?php  
//1.引入smarty类  
include &#39;libs/Smarty.class.php&#39;;  
//2.实例化smarty对象  
$smarty = new Smarty();   
//3.设置相关属性  
$smarty->template_dir = "templates/"; //模板目录  
$smarty->compile_dir = "templates_c"; //编译目录  
//修改定界符  
$smarty->left_delimiter = &#39;<{&#39;;    //自定义定界符,默认是"{"  
$smarty->right_delimiter = &#39;}>&#39;;  
//4.分配数据  
$smarty->assign(&#39;title&#39;,&#39;smarty模板引擎&#39;);  
$smarty->assign(&#39;content&#39;,&#39;smarty模板引擎 是一个强大的模板引擎!&#39;);  
//5.载入视图  
$smarty->display(&#39;index.html&#39;);

index.html(前端視圖):

<!DOCTYPE html>  
<html lang="en">  
<head>  
    <meta charset="UTF-8">  
    <title>{$title}</title>  
    <style>  
        <{literal}>       <{* 通过literal函数解决定界符"{"在CSS和JS中的冲突。Smarty会自动解析定界符内的内容(不会解析引入的外部文件)。也可以通过自定义定界符解决冲突。 *}>  
            h1{color:tomato; font-size:40px;}  
            p{color: #00f;}  
        <{/literal}>  
    </style>  
</head>  
<body>  
    <h1><{$title}> $title</h1>    <{* 只有定界符内的内容才会被Smarty解析,且左定界符后不能有空格 *}>  
    <p><{$content}></p>  
    <p><?php echo $title;?></p>   <{* 不会解析PHP代码 *}>  
    <{*   
     这是注释   
    *}>  
</body>  
</html>

相關推薦:

php定界符EOF講解

PHP定界符eof如何使用

php的定界符heredoc技術詳解

以上是PHP Smarty 定界符衝突該如何處理的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn