久久久久av_欧美日韩一区二区在线_国产精品三区四区_日韩中字在线

Discuz! 官方交流社區

標題: 分類信息字段中的選擇和多選的數據庫表,123替換 [打印本頁]

作者: roc29a    時間: 2023-9-26 14:23
標題: 分類信息字段中的選擇和多選的數據庫表,123替換
pre_forum_typeoption數據庫表在選擇或多選時有1=xx2=yy3=zz等等。pre_forum_typeoptionvar表及pre_forum_optionvalue1用123代表式,怎么能讓這兩個表篩選并輸出變量,1替換為xx,2替換為yy,3替換為zz等等

作者: 科站網    時間: 2023-9-26 14:32
你看到是123,但實際中間有一個制表符,應該是
  1. 1        2
復制代碼

作者: roc29a    時間: 2023-9-26 14:38
科站網 發表于 2023-9-26 14:32
你看到是123,但實際中間有一個制表符,應該是

嗯,看起來像個空格,能去掉,整體我就搞不下來了。
作者: 科站網    時間: 2023-9-26 14:45
mysql update replace下
作者: 科站網    時間: 2023-9-26 14:45
再不行寫個腳本跑一下
作者: roc29a    時間: 2023-9-26 14:58
科站網 發表于 2023-9-26 14:45
mysql update replace下

這個不行啊,不想改變數據庫字段值
作者: roc29a    時間: 2023-9-26 15:00
科站網 發表于 2023-9-26 14:45
再不行寫個腳本跑一下

已經查資料,查百度,查百度AI折磨四五天了,我是初學者還是沒搞定
作者: 酷畫創意    時間: 2023-9-26 17:52
不太清楚你的具體訴求,但如果是要在帖子內容頁特定顯示分類字段的信息,可以直接編寫自定義分類信息的帖子內容頁模板,想怎么調用就怎么調用。如果是要在其他地方篩選分類信息字段展示,看能不能在后端獲取到帖子的分類信息字段變量寫一個邏輯判斷來輸出,沒必要動數據庫字段信息
作者: roc29a    時間: 2023-9-27 08:29
酷畫創意 發表于 2023-9-26 17:52
不太清楚你的具體訴求,但如果是要在帖子內容頁特定顯示分類字段的信息,可以直接編寫自定義分類信息的帖子 ...

帖子內容頁的內容能調到門戶文章內嗎?想把帖子的分類信息模板和內容調到文章里去。我這是在走數據庫表去實現
作者: 科站網    時間: 2023-9-27 08:37
roc29a 發表于 2023-9-27 08:29
帖子內容頁的內容能調到門戶文章內嗎?想把帖子的分類信息模板和內容調到文章里去。我這是在走數據庫表去 ...

直接寫一個插件不就完事了
作者: roc29a    時間: 2023-9-27 08:53
$tid=任意帖子ID;
pre_forum_typeoptionvar表:$typeoption = DB::fetch_all("SELECT rules FROM %t WHERE optionid > %d", array('forum_typeoption', 6));
pre_forum_typeoptionvar表:$typeoptionvar = DB::fetch_all("SELECT value FROM %t WHERE tid = %d", array('forum_typeoptionvar', $tid));
pre_forum_optionvalue1表:$optionvalue1= DB::fetch_first("SELECT * FROM %t WHERE tid = %d", array('forum_optionvalue1', $tid));
這時$typeoption的選擇和多選的字段對應的元素中會出現1=xx2=yy3=zz還有其他不知道什么碼包圍。$typeoptionvar和$optionvalue1的選擇和多選的元素中會有某個選項1或2或3或23或13或23或123等等。其實123就是代表值,怎么能讓這兩個變量$typeoptionvar和$optionvalue1,1替換為xx,2替換為yy,3替換為zz等等



作者: roc29a    時間: 2023-9-27 08:55
roc29a 發表于 2023-9-27 08:53
$tid=任意帖子ID;
pre_forum_typeoptionvar表:$typeoption = DB::fetch_all("SELECT rules FROM %t WHERE  ...

這是一個PHP處理數組的問題
作者: roc29a    時間: 2023-9-27 09:08
科站網 發表于 2023-9-27 08:37
直接寫一個插件不就完事了

正是在寫插件代碼,可是不大會
作者: 科站網    時間: 2023-9-27 09:15
roc29a 發表于 2023-9-27 09:08
正是在寫插件代碼,可是不大會

定制或者開發文檔:https://www.discuzlab.com/x-docs/develop/dev.html

作者: 酷畫創意    時間: 2023-9-27 09:19
roc29a 發表于 2023-9-27 08:29
帖子內容頁的內容能調到門戶文章內嗎?想把帖子的分類信息模板和內容調到文章里去。我這是在走數據庫表去 ...

打擾,再見!
作者: roc29a    時間: 2023-9-27 09:36
酷畫創意 發表于 2023-9-27 09:19
打擾,再見!

想把發帖投稿到文章中去,有這個插件,但不能滿足分類信息投稿到文章,是在解決這個問題。并不是DIY調用帖子。感謝參與我的問題,剛才說的急,冒犯了。
作者: roc29a    時間: 2023-9-27 09:39
科站網 發表于 2023-9-27 09:15
定制或者開發文檔:https://www.discuzlab.com/x-docs/develop/dev.html

只需處理數組問題就行了,需要PHP知識處理,我匱乏這方面知識。感謝大力支持
作者: roc29a    時間: 2023-9-27 09:46
rules部分:[rules]={1=xx2=yy3=zz}
value部分:[value]={123}
某字段值:[字段]={123}
需求結果:
value部分:[value]={xx,yy,zz}
某字段值:[字段}={xx,yy,zz}
作者: roc29a    時間: 2023-10-6 09:34
<!-- forum_typeoption表中所有1 = xx 2 = yy 3 = zz更改為 [rules]xx yy zz -->
$typeoption = DB::fetch_all("SELECT optionid,rules FROM %t WHERE optionid > %d", array('forum_typeoption', 6));
$typeoptionvar = DB::fetch_all("SELECT optionid,value FROM %t WHERE tid = %d", array('forum_typeoptionvar', $tid));
//取出含數字字符串中最大的數字
function extractMaxNumber($str) {
  $maxNumber = '';
  $isNumber = false;
  for ($i = 0; $i < strlen($str); $i++) {
    if (is_numeric($str[$i])) {
      if (!$isNumber) {
        $maxNumber = $str[$i];
        $isNumber = true;
      } else {
        $maxNumber .= $str[$i];
      }
    } else {
      $isNumber = false;
    }
  }
  return (int) $maxNumber;
}
//$typeoption的[rules],$choices分割成數組
foreach ($typeoption as $keys => $types) {
  if (strpos($types[rules], 'choices') !== false) {//$typeoption找出選擇和多選的rules
    $choices[$keys][rules]=$types[rules];
    $optionids[$keys]=$types[optionid];
    $optionids=array_values($optionids);
    $choices[$keys][rules]=strstr($choices[$keys][rules],'1 = ');
    $choices[$keys][rules]=strstr($choices[$keys][rules],'"',true);//把數組截取
      for($i=1;$i<=extractMaxNumber($choices[$keys][rules]);$i++){
        $choices[$keys][rules]=str_replace("$i = ", ",$i=", $choices[$keys][rules]);
      }
    $choices[$keys][rules]=substr($choices[$keys][rules],1);//去除第一個字符
    $choices[$keys][rules]=explode(",",$choices[$keys][rules]);//字符串分割成數組
    $typeoption[$keys][rules]=$choices[$keys][rules];
  }
}

//$typeoptionvar,$optionids數組里的$choice分割成數組并替換
foreach ($typeoptionvar as $key => $type){
  if (in_array($type[optionid], $optionids)){
    $choice[$key][rules]=$type[value];
      for($i=1;$i<=extractMaxNumber($choice[$key][rules]);$i++){
        $choice[$key][rules]=preg_replace('/\s+/','', $choice[$key][rules]);
      }
    $choice[$key][rules]=str_split($choice[$key][rules]);
    //把$choice最底層數組含數字元素替換成對應的$choices含有數字的元素并去除數字和=
    foreach($choice[$key][rules] as $tion => $rule){
      foreach($choices[$key][rules] as $tions => $rules){
        if (strpos($rules, "$rule") !== false) {
          $choice[$key][rules][$tion]=$choices[$key][rules][$choice[$key][rules][$tion]-1];
        }
      }
      for($i=1;$i<=extractMaxNumber($choice[$key][rules][$tion]);$i++){
        $choice[$key][rules][$tion]=str_replace("$i=", " ", $choice[$key][rules][$tion]);
      }
      
      
    }
    $choice[$key][rules]=implode(" ", $choice[$key][rules]);
    $typeoptionvar[$key][value]=$choice[$key][rules];
  }
}
作者: roc29a    時間: 2023-10-6 09:36
roc29a 發表于 2023-10-6 09:34
$typeoption = DB::fetch_all("SELECT optionid,rules FROM %t WHERE optionid > %d", array('forum_typeo ...
  1. <!-- forum_typeoption表中所有1 = xx 2 = yy 3 = zz更改為 [rules]xx yy zz -->
  2. $typeoption = DB::fetch_all("SELECT optionid,rules FROM %t WHERE optionid > %d", array('forum_typeoption', 6));
  3. $typeoptionvar = DB::fetch_all("SELECT optionid,value FROM %t WHERE tid = %d", array('forum_typeoptionvar', $tid));
  4. //取出含數字字符串中最大的數字
  5. function extractMaxNumber($str) {
  6.   $maxNumber = '';
  7.   $isNumber = false;
  8.   for ($i = 0; $i < strlen($str); $i++) {
  9.     if (is_numeric($str[$i])) {
  10.       if (!$isNumber) {
  11.         $maxNumber = $str[$i];
  12.         $isNumber = true;
  13.       } else {
  14.         $maxNumber .= $str[$i];
  15.       }
  16.     } else {
  17.       $isNumber = false;
  18.     }
  19.   }
  20.   return (int) $maxNumber;
  21. }
  22. //$typeoption的[rules],$choices分割成數組
  23. foreach ($typeoption as $keys => $types) {
  24.   if (strpos($types[rules], 'choices') !== false) {//$typeoption找出選擇和多選的rules
  25.     $choices[$keys][rules]=$types[rules];
  26.     $optionids[$keys]=$types[optionid];
  27.     $optionids=array_values($optionids);
  28.     $choices[$keys][rules]=strstr($choices[$keys][rules],'1 = ');
  29.     $choices[$keys][rules]=strstr($choices[$keys][rules],'"',true);//把數組截取
  30.       for($i=1;$i<=extractMaxNumber($choices[$keys][rules]);$i++){
  31.         $choices[$keys][rules]=str_replace("$i = ", ",$i=", $choices[$keys][rules]);
  32.       }
  33.     $choices[$keys][rules]=substr($choices[$keys][rules],1);//去除第一個字符
  34.     $choices[$keys][rules]=explode(",",$choices[$keys][rules]);//字符串分割成數組
  35.     $typeoption[$keys][rules]=$choices[$keys][rules];
  36.   }
  37. }

  38. //$typeoptionvar,$optionids數組里的$choice分割成數組并替換
  39. foreach ($typeoptionvar as $key => $type){
  40.   if (in_array($type[optionid], $optionids)){
  41.     $choice[$key][rules]=$type[value];
  42.       for($i=1;$i<=extractMaxNumber($choice[$key][rules]);$i++){
  43.         $choice[$key][rules]=preg_replace('/\s+/','', $choice[$key][rules]);
  44.       }
  45.     $choice[$key][rules]=str_split($choice[$key][rules]);
  46.     //把$choice最底層數組含數字元素替換成對應的$choices含有數字的元素并去除數字和=
  47.     foreach($choice[$key][rules] as $tion => $rule){
  48.       foreach($choices[$key][rules] as $tions => $rules){
  49.         if (strpos($rules, "$rule") !== false) {
  50.           $choice[$key][rules][$tion]=$choices[$key][rules][$choice[$key][rules][$tion]-1];
  51.         }
  52.       }
  53.       for($i=1;$i<=extractMaxNumber($choice[$key][rules][$tion]);$i++){
  54.         $choice[$key][rules][$tion]=str_replace("$i=", " ", $choice[$key][rules][$tion]);
  55.       }
  56.       
  57.       
  58.     }
  59.     $choice[$key][rules]=implode(" ", $choice[$key][rules]);
  60.     $typeoptionvar[$key][value]=$choice[$key][rules];
  61.   }
  62. }
復制代碼

作者: roc29a    時間: 2023-10-6 09:38
  1. <!-- forum_typeoption表中所有1 = xx 2 = yy 3 = zz更改為 [rules]xx yy zz -->
  2. $typeoption = DB::fetch_all("SELECT optionid,rules FROM %t WHERE optionid > %d", array('forum_typeoption', 6));
  3. $typeoptionvar = DB::fetch_all("SELECT optionid,value FROM %t WHERE tid = %d", array('forum_typeoptionvar', $tid));
  4. //取出含數字字符串中最大的數字
  5. function extractMaxNumber($str) {
  6.   $maxNumber = '';
  7.   $isNumber = false;
  8.   for ($i = 0; $i < strlen($str); $i++) {
  9.     if (is_numeric($str[$i])) {
  10.       if (!$isNumber) {
  11.         $maxNumber = $str[$i];
  12.         $isNumber = true;
  13.       } else {
  14.         $maxNumber .= $str[$i];
  15.       }
  16.     } else {
  17.       $isNumber = false;
  18.     }
  19.   }
  20.   return (int) $maxNumber;
  21. }
  22. //$typeoption的[rules],$choices分割成數組
  23. foreach ($typeoption as $keys => $types) {
  24.   if (strpos($types[rules], 'choices') !== false) {//$typeoption找出選擇和多選的rules
  25.     $choices[$keys][rules]=$types[rules];
  26.     $optionids[$keys]=$types[optionid];
  27.     $optionids=array_values($optionids);
  28.     $choices[$keys][rules]=strstr($choices[$keys][rules],'1 = ');
  29.     $choices[$keys][rules]=strstr($choices[$keys][rules],'"',true);//把數組截取
  30.       for($i=1;$i<=extractMaxNumber($choices[$keys][rules]);$i++){
  31.         $choices[$keys][rules]=str_replace("$i = ", ",$i=", $choices[$keys][rules]);
  32.       }
  33.     $choices[$keys][rules]=substr($choices[$keys][rules],1);//去除第一個字符
  34.     $choices[$keys][rules]=explode(",",$choices[$keys][rules]);//字符串分割成數組
  35.     $typeoption[$keys][rules]=$choices[$keys][rules];
  36.   }
  37. }

  38. //$typeoptionvar,$optionids數組里的$choice分割成數組并替換
  39. foreach ($typeoptionvar as $key => $type){
  40.   if (in_array($type[optionid], $optionids)){
  41.     $choice[$key][rules]=$type[value];
  42.       for($i=1;$i<=extractMaxNumber($choice[$key][rules]);$i++){
  43.         $choice[$key][rules]=preg_replace('/\s+/','', $choice[$key][rules]);
  44.       }
  45.     $choice[$key][rules]=str_split($choice[$key][rules]);
  46.     //把$choice最底層數組含數字元素替換成對應的$choices含有數字的元素并去除數字和=
  47.     foreach($choice[$key][rules] as $tion => $rule){
  48.       foreach($choices[$key][rules] as $tions => $rules){
  49.         if (strpos($rules, "$rule") !== false) {
  50.           $choice[$key][rules][$tion]=$choices[$key][rules][$choice[$key][rules][$tion]-1];
  51.         }
  52.       }
  53.       for($i=1;$i<=extractMaxNumber($choice[$key][rules][$tion]);$i++){
  54.         $choice[$key][rules][$tion]=str_replace("$i=", " ", $choice[$key][rules][$tion]);
  55.       }
  56.       
  57.       
  58.     }
  59.     $choice[$key][rules]=implode(" ", $choice[$key][rules]);
  60.     $typeoptionvar[$key][value]=$choice[$key][rules];
  61.   }
  62. }
復制代碼



作者: roc29a    時間: 2023-10-6 10:33
改進了一下,并把圖片的雜亂碼去掉
  1. //取出含數字字符串中最大的數字
  2. function extractMaxNumber($str) {
  3.   $maxNumber = '';
  4.   $isNumber = false;
  5.   for ($i = 0; $i < strlen($str); $i++) {
  6.     if (is_numeric($str[$i])) {
  7.       if (!$isNumber) {
  8.         $maxNumber = $str[$i];
  9.         $isNumber = true;
  10.       } else {
  11.         $maxNumber .= $str[$i];
  12.       }
  13.     } else {
  14.       $isNumber = false;
  15.     }
  16.   }
  17.   return (int) $maxNumber;
  18. }
  19. //$typeoption的[rules],$choices分割成數組
  20. foreach ($typeoption as $keys => $types) {
  21.   if (strpos($types[rules], 'choices') !== false) {//$typeoption找出選擇和多選的rules
  22.     $choices[$keys][rules]=$types[rules];
  23.     $optionids[$keys]=$types[optionid];
  24.     $optionids=array_values($optionids);
  25.     $choices[$keys][rules]=strstr($choices[$keys][rules],'1 = ');
  26.     $choices[$keys][rules]=strstr($choices[$keys][rules],'"',true);//把數組截取
  27.       for($i=1;$i<=extractMaxNumber($choices[$keys][rules]);$i++){
  28.         $choices[$keys][rules]=str_replace("$i = ", ",$i=", $choices[$keys][rules]);
  29.       }
  30.     $choices[$keys][rules]=substr($choices[$keys][rules],1);//去除第一個字符
  31.     $choices[$keys][rules]=explode(",",$choices[$keys][rules]);//字符串分割成數組
  32.     $typeoption[$keys][rules]=$choices[$keys][rules];
  33.   }
  34. }

  35. //$typeoptionvar,$optionids數組里的$choice分割成數組并替換
  36. foreach ($typeoptionvar as $key => $type){
  37.   if (in_array($type[optionid], $optionids)){
  38.     $choice[$key][value]=$type[value];
  39.       for($i=1;$i<=extractMaxNumber($choice[$key][value]);$i++){
  40.         $choice[$key][value]=preg_replace('/\s+/','', $choice[$key][value]);
  41.       }
  42.     $choice[$key][value]=str_split($choice[$key][value]);
  43.     //把$choice最底層數組含數字元素替換成對應的$choices含有數字的元素并去除數字和=
  44.     foreach($choice[$key][value] as $tion => $rule){
  45.       foreach($choices[$key][rules] as $tions => $rules){
  46.         if (strpos($rules, "$rule") !== false) {
  47.           $choice[$key][value][$tion]=$choices[$key][rules][$choice[$key][value][$tion]-1];
  48.         }
  49.       }
  50.       for($i=1;$i<=extractMaxNumber($choice[$key][value][$tion]);$i++){
  51.         $choice[$key][value][$tion]=str_replace("$i=", " ", $choice[$key][value][$tion]);
  52.       }   
  53.     }
  54.     $choice[$key][value]=implode(" ", $choice[$key][value]);
  55.     $typeoptionvar[$key][value]=$choice[$key][value];
  56.   }
  57. }

  58. foreach ($typeoptionvar as $key => $type) {
  59.     if (strpos($type[value], 'data') !== false) {
  60.         $image[$key][value]=strstr($typeoptionvar[$key][value],'data');
  61.         $image[$key][value]=str_replace('";}','',$image[$key][value]);
  62.         $typeoptionvar[$key][value]=$image[$key][value];
  63.     }
  64. }
復制代碼





歡迎光臨 Discuz! 官方交流社區 (http://m.9999xn.com/) Powered by Discuz! X5.0
久久久久av_欧美日韩一区二区在线_国产精品三区四区_日韩中字在线
精品一区二区三区视频 | 欧美日韩一区视频| 色综合视频在线观看| 亚洲免费av高清| 好吊一区二区三区| 国产综合久久| 国产精品福利在线播放| 一区二区三区四区在线播放| 亚洲乱码国产乱码精品精的特点 | 成人免费高清在线观看| 成人一区二区三区在线观看| 成人激情黄色小说| 影音先锋中文字幕一区| 国产精品亚洲综合| 91精品国产综合久久国产大片| 欧美精品乱码久久久久久 | 亚洲综合视频在线| 韩国欧美国产1区| 欧美视频一区| 69精品人人人人| 综合色天天鬼久久鬼色| 极品瑜伽女神91| 亚洲欧洲日韩综合二区| 国产精品乱码一区二区三区| 欧美色综合网站| 亚洲欧洲另类国产综合| 懂色av一区二区三区免费观看| 好看的av在线不卡观看| 欧美精品久久久久久久多人混战 | 国产精品国产三级国产a| 日韩黄色免费电影| 99久久国产综合精品麻豆| 在线视频亚洲| 2020日本不卡一区二区视频| 美女脱光内衣内裤视频久久网站 | 丝袜a∨在线一区二区三区不卡| 成人av在线影院| 欧美久久久久中文字幕| 午夜成人在线视频| 99国产精品久久久久老师| 国产日韩欧美不卡在线| 韩国欧美国产1区| 国产精品一区二区视频| 久久国产一区| 天堂资源在线中文精品| 欧美视频在线观看一区| 亚洲精品午夜久久久| 影音先锋在线一区| 国产精品视频yy9299一区| 91麻豆国产精品久久| 久久久综合激的五月天| 99riav一区二区三区| 日韩美女天天操| av中文字幕亚洲| 26uuu色噜噜精品一区二区| 精品粉嫩超白一线天av| 亚洲丝袜精品丝袜在线| 99精品免费网| 亚洲三级免费观看| 你懂的国产精品永久在线| 这里只有精品电影| 成人av小说网| 国产亚洲精品久久飘花| 在线不卡一区二区| 99视频在线观看一区三区| 1024成人网色www| 久热精品在线| 国产高清精品在线| 一区二区三区免费网站| 欧美综合天天夜夜久久| 亚洲精品一区二区三区福利| 日本不卡123| 精品毛片乱码1区2区3区| 亚洲激情在线| 国模无码大尺度一区二区三区| 日韩一区二区免费视频| 欧美精品黄色| 91麻豆精品91久久久久同性| 亚洲精品综合在线| 日本伦理一区二区| 色综合久久中文字幕| 日韩电影在线免费| 久久老女人爱爱| 在线观看日韩电影| 一本色道久久综合| 国产午夜一区二区三区| 国产一区二区三区免费看| 一区二区三区四区av| 精品福利av导航| 欧美日精品一区视频| 中文精品视频一区二区在线观看| 国产精品18久久久久久久久| 亚洲电影一区二区三区| 亚洲精品人人| 午夜伦欧美伦电影理论片| 亚洲国产成人在线| 久久久99国产精品免费| 欧美chengren| 91视频在线观看| 盗摄精品av一区二区三区| 全部av―极品视觉盛宴亚洲| 精品动漫3d一区二区三区免费| 国产精品蜜臀av| 最新国产の精品合集bt伙计| 中文字幕+乱码+中文字幕一区| 精品国产乱码久久久久久久 | 精品裸体舞一区二区三区| 欧美一级片在线看| 久久久91精品国产一区二区精品| 日韩欧美中文字幕公布| 精品成人私密视频| 日韩三级伦理片妻子的秘密按摩| 欧美在线观看视频一区二区三区| 美女主播一区| 欧美美女喷水视频| 久久一二三国产| 亚洲人精品午夜| 日韩电影在线免费看| 99国产精品视频免费观看| 欧美日韩理论| 久久夜色精品| xnxx国产精品| 亚洲愉拍自拍另类高清精品| 免费看日韩精品| 91免费精品国自产拍在线不卡| 亚洲第一在线| 欧美视频一区二区三区| 久久久久综合网| 亚洲第一电影网| 成人午夜精品在线| 亚洲成人一区在线| 中文字幕av在线一区二区三区| 亚洲在线视频网站| av在线一区二区三区| 老司机亚洲精品| 日本韩国欧美国产| 26uuu久久天堂性欧美| 国产精品久久久久久一区二区三区 | 精品一区二区免费| 奇米影视一区二区三区小说| 亚洲狼人国产精品| 成人精品gif动图一区| 久久黄色影院| 亚洲三级电影全部在线观看高清| 国产嫩草影院久久久久| 日本不卡一区二区三区 | 在线成人h网| 国产免费观看久久| 99在线热播精品免费| 欧美日韩一区二区欧美激情| 一区二区三区电影在线播| 色综合中文综合网| 国产欧美一区视频| 久久99国产精品免费| 久久综合狠狠| 亚洲成在线观看| 香蕉亚洲视频| 午夜精品福利久久久| 99亚洲视频| 亚洲精品国产精品乱码不99| 国产中文一区二区| 国产精品福利一区二区| 欧美国产三区| 中文字幕一区二区三区视频| 99精品欧美一区二区三区小说 | 亚洲精品视频一区二区三区| 日韩美女精品在线| 一区二区福利| 免费一区二区视频| 91精品国产综合久久国产大片| 亚洲女人的天堂| 亚洲黄色影院| 久久99深爱久久99精品| 欧美一区二区三区在线观看| 国产一区二区三区香蕉| 欧美变态tickle挠乳网站| 欧美成人一区二免费视频软件| 亚洲啪啪综合av一区二区三区| 久久综合精品一区| 欧美一区二区三区在线免费观看| 日韩欧美二区三区| 国模精品娜娜一二三区| 久久精品午夜| 97久久精品人人做人人爽| 亚洲综合成人网| 日韩一区二区中文字幕| 欧美日韩一区二区三区在线观看免| 在线观看日韩电影| 99久久精品国产导航| 亚洲欧美日韩电影| 26uuu色噜噜精品一区二区| 国产偷久久久精品专区| 成人的网站免费观看| 久久狠狠亚洲综合| 亚洲最大成人综合| 精品蜜桃在线看| 7777精品伊人久久久大香线蕉 | 国产在线不卡| 成人午夜伦理影院| 国产精品一区二区在线观看不卡 |