亚洲香蕉成人av网站在线观看_欧美精品成人91久久久久久久_久久久久久久久久久亚洲_热久久视久久精品18亚洲精品_国产精自产拍久久久久久_亚洲色图国产精品_91精品国产网站_中文字幕欧美日韩精品_国产精品久久久久久亚洲调教_国产精品久久一区_性夜试看影院91社区_97在线观看视频国产_68精品久久久久久欧美_欧美精品在线观看_国产精品一区二区久久精品_欧美老女人bb

首頁 > 開發 > PHP > 正文

Smarty中常用變量操作符匯總

2024-05-04 23:26:26
字體:
來源:轉載
供稿:網友
這篇文章主要介紹了Smarty中常用變量操作符,實例匯總了常見的各種變量操作符,非常具有實用價值,需要的朋友可以參考下
 
 

本文匯總了Smarty中常用變量操作符,分享給大家供大家參考。具體如下:

php模板引擎smarty的變量操作符可用于操作變量,自定義函數和字符。
語法中使用"|"應用變量操作符,多個參數用":"??指簟?/DIV>

capitalize[首字母大寫] 
count_characters[計算字符數] 
cat[連接字符串] 
count_paragraphs[計算段落數]
count_sentences[計算句數]
count_words[計算詞數]
date_format[時間格式]
default[默認]
escape[轉碼]
indent[縮進]
lower[小寫 ]
nl2br[換行符替換成<br />]
regex_replace[正則替換]
replace[替換]
spacify[插空]
string_format[字符串格式化]
strip[去除(多余空格)]
strip_tags[去除html標簽]
truncate[截取]
upper[大寫]
wordwrap[行寬約束]
組合使用多個操作符

實例如下:

 

復制代碼代碼如下:
{* 標題大寫 *}
<h2>{$title|upper}</h2>
{* 取其前40個字符 *}
Topic: {$topic|truncate:40:"..."}
{* 格式化文字串 *}
{"now"|date_format:"%Y/%m/%d"}
{* 在自定義函數里應用調節器 *}
{mailto|upper address="main@cn-web.com"}
capitalize(首字母大寫)

 

index.php頁面如下:

 

復制代碼代碼如下:
$smarty = new Smarty;
$smarty->assign('articleTitle', 'Police begin campaign to rundown jaywalkers.');
$smarty->display('index.tpl');

 

index.tpl頁面如下:

 

復制代碼代碼如下:
{$articleTitle}
{$articleTitle|capitalize}

 

OUTPUT輸出如下:

 

復制代碼代碼如下:
Police begin campaign to rundown jaywalkers.
Police Begin Campaign To Rundown Jaywalkers.

 

count_characters(計算變量里的字符數)

index.php如下:

 

復制代碼代碼如下:
$smarty = new Smarty;
$smarty->assign('articleTitle', 'Cold Wave Linked to Temperatures.');
$smarty->display('index.tpl');

 

index.tpl頁面如下:

 

復制代碼代碼如下:
{$articleTitle}
{$articleTitle|count_characters}

 

OUTPUT輸出如下:

Cold Wave Linked to Temperatures.

cat(連接字符串)
將cat里的值連接到給定的變量后面
index.php如下:

 

復制代碼代碼如下:
$smarty = new Smarty;
$smarty->assign('articleTitle', 'Psychics predict world didn't end');
$smarty->display('index.tpl');

 

index.tpl頁面如下:

 

復制代碼代碼如下:
{$articleTitle|cat:" yesterday."}

 

OUTPUT輸出如下:

 

復制代碼代碼如下:
Psychics predict world didn't end yesterday.

 

count_paragraphs(計算段數)
計算變量里的段落數量
index.php如下:

 

復制代碼代碼如下:
$smarty = new Smarty;
$smarty->assign('articleTitle', 'War Dims Hope for Peace. Child's Death Ruins Couple's Holiday.');
$smarty->display('index.tpl');

 

index.tpl模板頁面如下:

 

復制代碼代碼如下:
{$articleTitle}
{$articleTitle|count_paragraphs}

 

OUTPUT輸出如下:

 

復制代碼代碼如下:
War Dims Hope for Peace. Child's Death Ruins Couple's Holiday.

 

Man is Fatally Slain. Death Causes Loneliness, Feeling of Isolation.
2

 

count_sentences(計算句數)
計算變量里句子的數量
index.php如下:

 

復制代碼代碼如下:
$smarty = new Smarty;
$smarty->assign('articleTitle', 'Two Soviet Ships Collide - One Dies. Enraged Cow Injures Farmer with Axe.');
$smarty->display('index.tpl');

 

index.tpl模板如下:

 

復制代碼代碼如下:
{$articleTitle}
{$articleTitle|count_sentences}

 

OUTPUT輸出如下:

 

復制代碼代碼如下:
Two Soviet Ships Collide - One Dies. Enraged Cow Injures Farmer with Axe.
2

count_words(計算詞數)
計算變量里的詞數
index.php如下:
復制代碼代碼如下:
$smarty = new Smarty;
$smarty->assign('articleTitle', 'Dealers Will Hear Car Talk at Noon.');
$smarty->display('index.tpl');

 

index.tpl模板如下:

 

復制代碼代碼如下:
{$articleTitle}
{$articleTitle|count_words}

 

OUTPUT輸出如下:

 

復制代碼代碼如下:
Dealers Will Hear Car Talk at Noon.
7

date_format(日期格式)
Parameter Position
參數位置 Type Required Default Description 
1 string No %b %e, %Y This is the format for the outputted date.
輸出字串的格式 
2 string No n/a This is the default date if the input is empty.
輸入為空時的默認設置
在給定的函數serftime();里格式日期和時間.
Unix或者mysql等的時間戳(parsable by strtotime)都可以傳遞到smarty.
設計者可以使用date_format完全控制日期格式.
如果傳給date_format的數據是空的,將使用第二個參數作為時間格式
index.php如下:

 

 

復制代碼代碼如下:
$smarty = new Smarty;
$smarty->assign('yesterday', strtotime('-1 day'));
$smarty->display('index.tpl');

 

index.tpl:

 

復制代碼代碼如下:
{$smarty.now|date_format}
{$smarty.now|date_format:"%A, %B %e, %Y"}
{$smarty.now|date_format:"%H:%M:%S"}
{$yesterday|date_format}
{$yesterday|date_format:"%A, %B %e, %Y"}
{$yesterday|date_format:"%H:%M:%S"}

 

OUTPUT輸出如下:

 

復制代碼代碼如下:
Feb 6, 2001
Tuesday, February 6, 2001
14:33:00
Feb 5, 2001
Monday, February 5, 2001
14:33:00
default(默認)
Parameter Position Type Required Default Description 
1 string No empty This is the default value to output if the variable is empty.

這是變量為空的時候的默認輸出
為空變量設置一個默認值. 
當變量為空或者未分配的時候,將由給定的默認值替代輸出.
index.php如下:

 

 

復制代碼代碼如下:
$smarty = new Smarty;
$smarty->assign('articleTitle', 'Dealers Will Hear Car Talk at Noon.');
$smarty->display('index.tpl');

 

index.tpl模板:

 

復制代碼代碼如下:
{$articleTitle|default:"no title"}
{$myTitle|default:"no title"}

 

OUTPUT輸出:

 

復制代碼代碼如下:
Dealers Will Hear Car Talk at Noon.
no title

escape(轉碼)
Parameter Position Type Required Possible Values Default Description 
1 string No html,htmlall,url,quotes,hex,hexentity,javascript html This is the escape format to use. 
用于html轉碼,url轉碼,在沒有轉碼的變量上轉換單引號,十六進制轉碼,十六進制美化,或者javascript轉碼.
默認是html轉碼 
index.php如下:
 
復制代碼代碼如下:
$smarty = new Smarty;
$smarty->assign('articleTitle', "'Stiff Opposition Expected to Casketless Funeral Plan'");
$smarty->display('index.tpl');

 
index.tpl模板:
 
復制代碼代碼如下:
{$articleTitle}
{$articleTitle|escape}
{$articleTitle|escape:"html"} {* escapes & " ' < > *}
{$articleTitle|escape:"htmlall"} {* escapes ALL html entities *}
{$articleTitle|escape:"url"}
{$articleTitle|escape:"quotes"}
<a
href="{$EmailAddress|escape:"hexentity"}mailto:{$EmailAddress|escape:"hex"}">{$EmailAddress|escape:"hexentity"}</a>

 
OUTPUT輸出:
 
復制代碼代碼如下:
'Stiff Opposition Expected to Casketless Funeral Plan'
'Stiff%20Opposition%20Expected%20to%20Casketless%20Funeral%20Plan'
'Stiff%20Opposition%20Expected%20to%20Casketless%20Funeral%20Plan'
'Stiff%20Opposition%20Expected%20to%20Casketless%20Funeral%20Plan'
'Stiff+Opposition+Expected+to+Casketless+Funeral+Plan'
'Stiff Opposition Expected to Casketless Funeral Plan'
<a
href="bob@me.netmailto:%62%6f%62%40%6d%65%2e%6e%65%74">bob@me.net</a>

indent(縮進)
Parameter Position Type Required Default Description 
1 integer No 4 This determines how many characters to indent to. 
2 string No (one space) This is the character used to indent with.
在每行縮進字符串,默認是4個字符(pear標準也是).
作為可選參數,你可以指定縮進字符數.
作為第二個可選參數,你可以指定縮進用什么字符代替 
index.php如下:
 
復制代碼代碼如下:
$smarty = new Smarty;
$smarty->assign('articleTitle', 'NJ judge to rule on nude beach.');
$smarty->display('index.tpl');

 
index.tpl模板:
 
復制代碼代碼如下:
{$articleTitle}
 
{$articleTitle|indent}
 
{$articleTitle|indent:10}
 
{$articleTitle|indent:1:"t"}

 
OUTPUT輸出:
 
復制代碼代碼如下:
NJ judge to rule on nude beach.
Sun or rain expected today, dark tonight.
Statistics show that teen pregnancy drops off significantly after 25.
 
NJ judge to rule on nude beach.
Sun or rain expected today, dark tonight.
Statistics show that teen pregnancy drops off significantly after 25.
NJ judge to rule on nude beach.
Sun or rain expected today, dark tonight.
Statistics show that teen pregnancy drops off significantly after 25.
 
NJ judge to rule on nude beach.
Sun or rain expected today, dark tonight.
Statistics show that teen pregnancy drops off significantly after 25.

 

lower(小寫)
將變量字符串小寫 
index.php如下:

復制代碼代碼如下:
$smarty = new Smarty;
$smarty->assign('articleTitle', 'Two Convicts Evade Noose, Jury Hung.');
$smarty->display('index.tpl');

index.tpl模板:
復制代碼代碼如下:
{$articleTitle}
{$articleTitle|lower}

OUTPUT輸出:
復制代碼代碼如下:
Two Convicts Evade Noose, Jury Hung.
two convicts evade noose, jury hung.

 

nl2br(換行符替換成<br /> )
所有的換行符將被替換成 <br />.同php的nl2br()函數一樣.
index.php如下:

復制代碼代碼如下:
$smarty = new Smarty;
$smarty->assign('articleTitle', "Sun or rain expectedntoday, dark tonight");
$smarty->display('index.tpl');

index.tpl模板:
復制代碼代碼如下:
{$articleTitle|nl2br}

OUTPUT輸出:
復制代碼代碼如下:
Sun or rain expected<br />today, dark tonight

 

regex_replace(正則替換)
尋找和替換正則表達式 .
Parameter Position Type Required Default Description 
1 string Yes n/a This is the regular expression to be replaced.
替換正則表達式.

2 string Yes n/a This is the string of text to replace with.
使用什么文本字串來替換
index.php如下:

復制代碼代碼如下:
$smarty = new Smarty;
$smarty->assign('articleTitle', "Infertility unlikely tonbe passed on, experts say.");
$smarty->display('index.tpl');

index.tpl模板:
復制代碼代碼如下:
{* replace each carriage return, tab & new line with a space *}{* 使用空格替換每個回車,tab,和換行符 *}
{$articleTitle}
{$articleTitle|regex_replace:"/[rtn]/":" "}

OUTPUT輸出:
復制代碼代碼如下:
Infertility unlikely to
be passed on, experts say.
Infertility unlikely to be passed on, experts say.

 

replace(替換)
簡單的搜索和替換字符串
Parameter Position Type Required Default Description 
1 string Yes n/a This is the string of text to be replaced.
將被替換的字符串 
2 string Yes n/a This is the string of text to replace with.
用來替換的文本
index.php如下:

復制代碼代碼如下:
$smarty = new Smarty;
$smarty->assign('articleTitle', "Child's Stool Great for Use in Garden.");
$smarty->display('index.tpl');

index.tpl模板:
復制代碼代碼如下:
{$articleTitle}
{$articleTitle|replace:"Garden":"Vineyard"}
{$articleTitle|replace:" ":" "}

OUTPUT輸出:
復制代碼代碼如下:
Child's Stool Great for Use in Garden.
Child's Stool Great for Use in Vineyard.
Child's Stool Great for Use in Garden.

spacify
是一種在字符串的每個字符之間插入空格或者插入其他的字符(串).
index.php如下:
復制代碼代碼如下:
$smarty = new Smarty;
$smarty->assign('articleTitle', 'Something Went Wrong in Jet Crash, Experts Say.');
$smarty->display('index.tpl');

index.tpl模板:
復制代碼代碼如下:
{$articleTitle}
{$articleTitle|spacify}
{$articleTitle|spacify:"^^"}

OUTPUT輸出:
復制代碼代碼如下:
Something Went Wrong in Jet Crash, Experts Say.
S o m e t h i n g W e n t W r o n g i n J e t C r a s h , E x p e r t s S a y .
S^^o^^m^^e^^t^^h^^i^^n^^g^^ ^^W^^e^^n^^t^^ ^^W^^r^^o^^n^^g^^ ^^i^^n^^ ^^J^^e^^t^^ ^^C^^r^^a^^s^^h^^,^^ ^^E^^x^^p^^e^^r^^t^^s^^ ^^S^^a^^y^^.

 

string_format(字符串格式化)
Parameter Position Type Required Default Description 
1 string Yes n/a This is what format to use. (sprintf)
使用的格式化方式
是一種格式化浮點數的方法.例如十進制數.使用sprintf語法格式化
index.php如下:

復制代碼代碼如下:
$smarty = new Smarty;
$smarty->assign('number', 23.5787446);
$smarty->display('index.tpl');

index.tpl模板:
復制代碼代碼如下:
{$number}
{$number|string_format:"%.2f"}
{$number|string_format:"%d"}

OUTPUT輸出:
復制代碼代碼如下:
23.5787446
23.58
24

 

strip(去除(多余空格)
替換所有重復的空格,換行和tab為單個.
index.php如下:

復制代碼代碼如下:
$smarty = new Smarty;
$smarty->assign('articleTitle', "Grandmother ofneight makest hole in one.");
$smarty->display('index.tpl');

index.tpl模板:
復制代碼代碼如下:
{$articleTitle}
{$articleTitle|strip}
{$articleTitle|strip:" "}

OUTPUT輸出:
復制代碼代碼如下:
Grandmother of
eight makes hole in one.
Grandmother of eight makes hole in one.
Grandmother of eight makes hole in one.

 

strip_tags(去除html標簽)
去除在<和>之間的所有標簽,包括<和>.
index.php如下:

復制代碼代碼如下:
$smarty = new Smarty;
$smarty->assign('articleTitle', "Blind Woman Gets <font face="helvetica">New Kidney</font> from Dad she Hasn't Seen in <b>years</b>.");
$smarty->display('index.tpl');

index.tpl模板:
復制代碼代碼如下:
{$articleTitle}
{$articleTitle|strip_tags}

OUTPUT輸出:
復制代碼代碼如下:
Blind Woman Gets <font face="helvetica">New Kidney</font> from Dad she Hasn't Seen in <b>years</b>.
Blind Woman Gets New Kidney from Dad she Hasn't Seen in years.

truncate(截取)
Parameter Position Type Required Default Description 
1 integer No 80 This determines how many characters to truncate to.
指定截取多少字符 
2 string No ... This is the text to append if truncation occurs.
截取后加在截取詞后的字符串 
3 boolean No false This determines whether or not to truncate at a word boundary (false), or at the exact character (true).
檢查是否截取到詞的邊界
截取字符串開始的一段.默認是80個.
你可以指定第二個參數作為在截取的那段字符串后加上什么字符.
默認情況下,smarty會截取到一個詞的末尾,
如果你想要精確的截取多少個字符,把第三個參數改為"true"
index.php如下:
復制代碼代碼如下:
$smarty = new Smarty;
$smarty->assign('articleTitle', 'Two Sisters Reunite after Eighteen Years at Checkout Counter.');
$smarty->display('index.tpl');

index.tpl模板:
復制代碼代碼如下:
{$articleTitle}
{$articleTitle|truncate}
{$articleTitle|truncate:30}
{$articleTitle|truncate:30:""}
{$articleTitle|truncate:30:"---"}
{$articleTitle|truncate:30:"":true}
{$articleTitle|truncate:30:"...":true}

OUTPUT輸出:
復制代碼代碼如下:
Two Sisters Reunite after Eighteen Years at Checkout Counter.
Two Sisters Reunite after Eighteen Years at Checkout Counter.
Two Sisters Reunite after...
Two Sisters Reunite after
Two Sisters Reunite after---
Two Sisters Reunite after Eigh
Two Sisters Reunite after E...

 

upper(大寫 )
將變量改為大寫
index.php如下:

復制代碼代碼如下:
$smarty = new Smarty;
$smarty->assign('articleTitle', "If Strike isn't Settled Quickly it may Last a While.");
$smarty->display('index.tpl');

index.tpl模板:
復制代碼代碼如下:
{$articleTitle}
{$articleTitle|upper}

OUTPUT輸出:
復制代碼代碼如下:
If Strike isn't Settled Quickly it may Last a While.
IF STRIKE ISN'T SETTLED QUICKLY IT MAY LAST A WHILE.

 

wordwrap(行寬約束)
可以指定段落的寬度(也就是多少個字符一行,超過這個字符數換行).默認80.
第二個參數可選,可以指定在約束點使用什么字符(默認是換行符n).
默認情況下smarty將截取到詞尾,你也可以指定精確截取多少個字符
Parameter Position Type Required Default Description 
1 integer No 80 This determines how many columns to wrap to.
指 定段落(句子)的寬度 
2 string No n This is the string used to wrap words with.
使用什么字符約束 
3 boolean No false This determines whether or not to wrap at a word boundary (false), or at the exact character (true).
是否精確約束到字符
index.php如下:

復制代碼代碼如下:
$smarty = new Smarty;
$smarty->assign('articleTitle', "Blind woman gets new kidney from dad she hasn't seen in years.");
$smarty->display('index.tpl');

index.tpl模板:
復制代碼代碼如下:
{$articleTitle}
{$articleTitle|wordwrap:30}
{$articleTitle|wordwrap:20}
{$articleTitle|wordwrap:30:"<br>n"}
{$articleTitle|wordwrap:30:"n":true}

OUTPUT輸出:
復制代碼代碼如下:
Blind woman gets new kidney from dad she hasn't seen in years.
Blind woman gets new kidney
from dad she hasn't seen in
years.
Blind woman gets new
kidney from dad she
hasn't seen in
years.
Blind woman gets new kidney<br>
from dad she hasn't seen in years.
Blind woman gets new kidney fr
om dad she hasn't seen in year
s.

組合使用多個操作符
可以在一個變量上應用操作符,它們將從左到右依次組合應用.多個操作符必須用"|"符號分開. 
index.php頁面如下:

 

 

復制代碼代碼如下:
$smarty = new Smarty;
$smarty->assign('articleTitle', 'Smokers are Productive, but Death Cuts Efficiency.');
$smarty->display('index.tpl');

 

index.tpl模板:

復制代碼代碼如下:
{$articleTitle}
{$articleTitle|upper|spacify}
{$articleTitle|lower|spacify|truncate}
{$articleTitle|lower|truncate:30|spacify}
{$articleTitle|lower|spacify|truncate:30:". . ."}

 

OUTPUT輸出:

 

復制代碼代碼如下:
Smokers are Productive, but Death Cuts Efficiency.
S M O K E R S A R E P R O D U C T I V E , B U T D E A T H C U T S E F F I C I E N C Y .
s m o k e r s a r e p r o d u c t i v e , b u t d e a t h c u t s...
s m o k e r s a r e p r o d u c t i v e , b u t . . .
s m o k e r s a r e p. . .

 

希望本文所述對大家的PHP程序設計有所幫助


發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
亚洲香蕉成人av网站在线观看_欧美精品成人91久久久久久久_久久久久久久久久久亚洲_热久久视久久精品18亚洲精品_国产精自产拍久久久久久_亚洲色图国产精品_91精品国产网站_中文字幕欧美日韩精品_国产精品久久久久久亚洲调教_国产精品久久一区_性夜试看影院91社区_97在线观看视频国产_68精品久久久久久欧美_欧美精品在线观看_国产精品一区二区久久精品_欧美老女人bb
川上优av一区二区线观看| 欧美有码在线视频| 欧美精品在线播放| 在线日韩精品视频| 欧美综合第一页| 欧美激情在线观看视频| 国产精品久久久91| 国产视频在线观看一区二区| 欧美激情综合亚洲一二区| 日韩av在线导航| 久久国产视频网站| 欧美日韩精品在线播放| 一区二区在线免费视频| 国产精品久久久久久久久久三级| 欧美日韩亚洲一区二| 欧美在线视频播放| 亚洲欧美日韩成人| 国模精品系列视频| 九九热精品视频在线播放| 色综合色综合久久综合频道88| 国产成人精品国内自产拍免费看| 欧美剧在线观看| 国内精品美女av在线播放| 亚洲一区二区三区四区视频| 97超级碰碰碰久久久| 亚洲成人久久电影| 伊人久久精品视频| 日韩欧美国产中文字幕| 日韩一区av在线| 亚洲精品乱码久久久久久金桔影视| 亚洲一二三在线| 91精品国产自产91精品| 国产精品99蜜臀久久不卡二区| 亚洲国产精久久久久久久| 日本午夜精品理论片a级appf发布| 国产精品成人aaaaa网站| 国产第一区电影| 欧美丰满老妇厨房牲生活| 亚洲黄色免费三级| 91亚洲精品一区| 欧美人与性动交a欧美精品| 久久精品99久久久久久久久| 成人精品一区二区三区电影免费| 国产成人亚洲综合| 亚洲丁香婷深爱综合| 欧美激情视频在线免费观看 欧美视频免费一| 亚洲国产精品久久| 中文字幕欧美国内| 国产一区二区在线免费| 久久国产精品久久久久久久久久| 这里只有精品在线观看| 这里精品视频免费| 一级做a爰片久久毛片美女图片| 日韩精品在线免费观看视频| 欧美日韩一二三四五区| 日韩大片免费观看视频播放| 欧美性极品xxxx做受| 亚洲女同性videos| 秋霞成人午夜鲁丝一区二区三区| 日韩av电影国产| 狠狠色香婷婷久久亚洲精品| 久久久久北条麻妃免费看| 欧美激情网站在线观看| 亚洲午夜小视频| 国产综合福利在线| 欧美日韩国产精品一区| 日韩福利伦理影院免费| 欧美激情在线播放| 亚洲国语精品自产拍在线观看| 国产精品三级久久久久久电影| 综合激情国产一区| 久久久精品2019中文字幕神马| 亚洲精品国产免费| 中文字幕九色91在线| 亚洲人高潮女人毛茸茸| 日韩欧美亚洲综合| 国内伊人久久久久久网站视频| 夜夜嗨av色综合久久久综合网| 亚洲伊人久久大香线蕉av| 欧美电影免费观看电视剧大全| 亚洲韩国欧洲国产日产av| 国产精品成人aaaaa网站| 亚洲性视频网站| 久久人人爽人人爽爽久久| 日韩一区在线视频| 中文字幕久热精品视频在线| 在线观看欧美日韩| 亚洲人成电影网站色| 91精品国产免费久久久久久| 久久综合国产精品台湾中文娱乐网| 欧美国产视频日韩| 久久久久久久久久亚洲| 中文字幕不卡av| 黄色精品一区二区| 欧美日韩一区二区在线播放| 亚洲老板91色精品久久| 日韩欧美在线播放| 欧美亚洲另类在线| 欧美激情一区二区三区在线视频观看| 亚洲第一福利网| 精品久久久久久久久中文字幕| 欧美极品少妇全裸体| 欧美日韩午夜激情| 国产亚洲人成a一在线v站| 国产精品一区二区久久久久| 97视频在线观看成人| 午夜精品一区二区三区在线| 中文欧美日本在线资源| 中文字幕亚洲综合久久筱田步美| 国产亚洲精品一区二区| 亚洲国产日韩欧美在线99| 欧美孕妇与黑人孕交| 久久色在线播放| 日韩亚洲在线观看| 国产精品免费久久久| 欧美在线免费观看| 久久韩剧网电视剧| 欧美日韩国产精品| 91av在线影院| 国产精品久久久久久久久久| 精品亚洲精品福利线在观看| 国产极品精品在线观看| 亚洲精品v欧美精品v日韩精品| 亚洲精品永久免费| 欧美高清电影在线看| 亚洲精品国产精品乱码不99按摩| 国产精品一香蕉国产线看观看| 国产精品一区二区久久久久| 欧美色道久久88综合亚洲精品| 亚洲第一精品夜夜躁人人躁| 国产成人亚洲综合青青| 成人免费视频xnxx.com| 欧美精品一本久久男人的天堂| 韩国国内大量揄拍精品视频| 亚洲第一天堂无码专区| 国产91九色视频| 欧洲精品在线视频| 大桥未久av一区二区三区| 91成品人片a无限观看| 亚洲欧美日韩视频一区| yellow中文字幕久久| 正在播放亚洲1区| 国产精品亚洲激情| 亚洲国产精品网站| 国产亚洲精品久久| 日韩美女主播视频| 国产成人久久久| 亚洲精品久久久久久久久久久| 欧美日韩电影在线观看| 国产精品欧美日韩| 国产成人91久久精品| www.欧美免费| 91欧美激情另类亚洲| 青青草99啪国产免费| 欧美人成在线视频| 亚洲国产成人一区| 国产日韩精品综合网站| 北条麻妃在线一区二区| 国产丝袜一区视频在线观看| 国产在线拍偷自揄拍精品| 国产精品9999| 欧美一区二粉嫩精品国产一线天| 日韩美女在线观看| 欧美激情第99页|