久久久久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://www.9999xn.com/) Powered by Discuz! X5.0
久久久久av_欧美日韩一区二区在线_国产精品三区四区_日韩中字在线
91麻豆成人久久精品二区三区| 中文在线资源观看网站视频免费不卡 | 久热这里只精品99re8久| 日韩伦理av电影| 影音先锋亚洲电影| 亚洲欧美一区二区久久| 亚洲国内自拍| 亚洲精品国久久99热| 99视频一区| 亚洲不卡一区二区三区| 一本在线高清不卡dvd| 日韩精品1区2区3区| 欧美网站大全在线观看| 精品在线亚洲视频| 日韩丝袜情趣美女图片| 波多野结衣在线一区| 久久精品这里都是精品| 黄色av成人| 一区二区久久久| 久久综合伊人| 久久99国内精品| 91精品国产综合久久久久久久| 国产精品66部| 久久蜜桃av一区二区天堂| 欧美chengren| 亚洲人成小说网站色在线 | 日韩精品电影一区亚洲| 欧美视频一区二区三区四区| 国产在线不卡视频| 日韩亚洲欧美中文三级| 色综合天天视频在线观看| 亚洲视频在线一区| 久久精品电影| 国产麻豆一精品一av一免费| 精品粉嫩超白一线天av| 极品av少妇一区二区| 亚洲午夜精品17c| 欧美三片在线视频观看| 97aⅴ精品视频一二三区| 亚洲免费毛片网站| 欧美性xxxxx极品少妇| 国产成人超碰人人澡人人澡| 国产三级一区二区三区| 国产精品乱码| 久久99精品一区二区三区| 久久中文娱乐网| 在线综合视频| 国内精品国产三级国产a久久| 久久久www免费人成精品| 一区二区三区欧美在线| 精品一区二区三区久久久| 国产亚洲精品免费| 亚洲一区二区在线免费观看| 国产精一区二区三区| 亚洲国产精品国自产拍av| 国产农村妇女精品一二区| 国产毛片精品国产一区二区三区| 精品免费视频.| 国产亚洲在线| 国产精品亚洲人在线观看| 国产精品嫩草99a| 色视频一区二区| 91丝袜国产在线播放| 亚洲va国产va欧美va观看| 日韩女优制服丝袜电影| 日韩亚洲国产欧美| 国产剧情一区二区| 一区二区在线观看免费| 日韩欧美国产高清| 亚洲欧美日韩在线综合| 成人免费视频app| 亚洲国产欧美在线| 欧美一区二区美女| 国产精品乱看| 91小视频免费观看| 婷婷开心久久网| 国产欧美日韩视频一区二区| 色又黄又爽网站www久久| 91免费在线播放| 免费在线欧美视频| 国产精品久久久久久久久免费樱桃| 在线观看日韩电影| 国内揄拍国内精品久久| 国产一区二区剧情av在线| 亚洲另类春色国产| 欧美成人伊人久久综合网| 久久福利电影| 欧美在线亚洲综合一区| 蜜臀av一区二区在线观看| 国产精品久久久久永久免费观看 | 在线观看日韩av电影| 国产精品综合视频| 亚洲午夜在线视频| 欧美不卡在线视频| 久久亚洲精选| 亚洲一二区在线| 国内精品免费**视频| 亚洲综合视频网| 久久蜜桃av一区精品变态类天堂| 91精品福利视频| 影音国产精品| jvid福利写真一区二区三区| 日韩avvvv在线播放| 国产精品不卡在线观看| 欧美一区二区黄色| 色婷婷亚洲精品| 99精品久久| 欧美福利视频| 国产精一品亚洲二区在线视频| 亚洲成人免费av| 中文字幕一区在线| 2023国产精华国产精品| 欧美三级三级三级爽爽爽| 日韩一区二区久久| 欧美精品成人| a美女胸又www黄视频久久| 国内精品伊人久久久久影院对白| 亚洲国产精品一区二区久久| 国产精品嫩草久久久久| 精品国产露脸精彩对白| 欧美日本在线播放| 一本一道久久a久久精品| 99精品视频免费观看| 91在线视频网址| 国产v综合v亚洲欧| 久久av中文字幕片| 婷婷一区二区三区| 依依成人综合视频| 国产精品不卡一区| 欧美国产成人精品| 久久久激情视频| 亚洲精品在线一区二区| 日韩一区二区三区四区五区六区| 欧美三级中文字幕| 欧美性一二三区| 在线观看一区日韩| 色婷婷国产精品综合在线观看| 国产视频在线观看一区 | 亚洲激情女人| 欧美日韩在线大尺度| 色综合咪咪久久| 99久久精品国产观看| 成人蜜臀av电影| 国产精品99精品久久免费| 黄页视频在线91| 狠狠久久亚洲欧美| 韩国v欧美v亚洲v日本v| 看片的网站亚洲| 久久精品久久精品| 九九精品一区二区| 极品美女销魂一区二区三区| 日本在线不卡视频一二三区| 一区二区三区在线视频观看 | 一本到不卡精品视频在线观看| 亚洲一区精彩视频| 亚洲中字黄色| 国产美女在线精品免费观看| 亚洲视频大全| 国产伦理一区| 久久激情综合| 91久久香蕉国产日韩欧美9色| 在线观看亚洲精品| 欧美日韩国产一级| 欧美体内she精视频| 欧美三级电影一区| 91麻豆精品国产91久久久久久 | 一区二区三区国产精品| 一区二区三区四区视频精品免费| 亚洲最大成人网4388xx| 亚洲国产综合视频在线观看| 午夜电影网一区| 玖玖九九国产精品| 国产精品一区二区三区99| 国产成人在线看| 成人综合在线观看| av一区二区三区黑人| 午夜欧美理论片| 一区免费在线| 在线综合视频| 久久精品一区二区国产| 欧美午夜精品一区二区蜜桃| 在线综合+亚洲+欧美中文字幕| 日韩精品一区二区三区四区视频| 久久综合久色欧美综合狠狠| 欧美国产精品v| 一区二区三区四区视频精品免费| 五月天中文字幕一区二区| 久久国产精品99精品国产| 国产精品系列在线观看| 成人丝袜高跟foot| 91免费国产在线| 亚洲精品美女91| 久热国产精品| 日韩一区国产二区欧美三区| 久久精品一二三| 国产精品久久久久久久久免费桃花 | 久久久蜜臀国产一区二区| 国产精品女主播在线观看| 亚洲一区二区综合| 麻豆精品久久久|