亚洲国产日韩欧美一区二区三区,精品亚洲国产成人av在线,国产99视频精品免视看7,99国产精品久久久久久久成人热,欧美日韩亚洲国产综合乱

?? ?? ? ?? ?? ??

1 ?? ???? ?? ??? ????.

configs ??? ? Smarty.conf ??? ????.

??? ??? ?????.

pageTitle = "This is mine"
bodyBgColor = "#eeeeee"

??? ?? ??:

微信圖片_20180312161442.png

?? ??? ??? ????.

微信圖片_20180312161518.png


2, ?? ?? ??:

Smarty.conf ??: ??

#注釋
pageTitle = "This is mine"
bodyBgColor = "#eeeeee"
tableBorderSize = "3"
tableBgColor = "#bbbbbb"
rowBgColor = "#cccccc"
#段落變量
[firstStyle]
color='#00f'
width='200px'
height='300px'
[.secondStyle]
color='#eee'
width='400px'
height='500px'
[other]
other='這是其他'

test.html:

{* 加上section *}
{config_load file='./configs/Smarty.conf' section='firstStyle'}
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>{#pageTitle#}</title>
</head>
<body>
<!--html的注釋-->
{*smarty模板的注釋*}
我叫{$address->name}今年{$address->age}歲<br>
性別:{$smarty.const.CL}<br>
配置變量1:{#color#}<br>
配置變量2:{$smarty.config.width}<br>
配置變量3:{$smarty.config.height}<br>
配置變量4:{$smarty.config.other}<br>
</body>
</html>

?? ??:

微信圖片_20180312163036.png

??:

1. ?? ??? ??? ?? ??? ??? ?? ??? ?? ?? ?? ??? ?? ?? ??? ?.

  2. ?? ??? ??? ?? ??? ??? ?? ??? ?? ?? ?? ?? ?????.

  3. smarty.conf ?? ???? ?(.)? ????? ?? ??? ??? ????. ?? ??? ??? ?? ??? ??? ????? ??? ? ????.


3, ?? ??? ??? ??: (div ??? ??? ???)

test.html:

{config_load file='./configs/Smarty.conf' section='firstStyle'}
<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8">
    <title>smarty test1</title>
<style type="text/css">
#aa{ width: {#width#};height: {#height#};background: {#color#};}
</style>
</head>
<body>
<div id='aa'>

這是一個div<br/><br/>
{#content#}
</div>
</body>

???? ? ?: {}?(?) smarty ?????? ????? ?? ?????

微信圖片_20180312164852.png

Smarty.conf:

#段落變量
#第一種顏色風(fēng)格
[firstStyle]
color='#00f'
width='300px'
height='300px'
content='第一種風(fēng)格'
#第二種顏色風(fēng)格
[secondStyle]
color='#0f0'
width='500px'
height='500px'
content='第二種風(fēng)格'

firstStyle ?????:

? ?? ??? ?????:

微信圖片_20180312165126.png



???? ??
||
<?php echo "配置文件讀取變量的操作";