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

首頁 > 數據庫 > MongoDB > 正文

分析php中的mongodb操作類

2020-03-22 18:14:07
字體:
來源:轉載
供稿:網友
這篇文章主要介紹了php實現的mongodb操作類,較為詳細的分析了php針對mongodb數據庫操作的各種常用技巧,并將其封裝進一個完整的類文件中以便于調用,非常具有實用價值,需要的朋友可以參考下

本文實例講述了php實現的mongodb操作類。分享給大家供大家參考。具體如下:

 ?php  * To change this template, choose Tools | Templates * and open the template in the editor.html' target='_blank'>class mongo_db {  private $config;  private $connection;  private $db;  private $connection_string;  private $host;  private $port;  private $user;  private $pass;  private $dbname;  private $persist;  private $persist_key;  private $selects = array();  private $wheres = array();  private $sorts = array();  private $limit = 999999;  private $offset = 0;  private $timeout = 200;  private $key = 0;  * CONSTRUCTOR * * Automatically check if the Mongo PECL extension has been installed/enabled. * Generate the connection string and establish a connection to the MongoDB. public function __construct() {  if((IS_NOSQL != 1)){  return;  if (!class_exists( Mongo )) {  //$this- error( The MongoDB PECL extension has not been installed or enabled , 500);  $configs =wxcity_base::load_config( cache , mongo_db  $num = count($configs[ connect  $this- timeout = trim($configs[ timeout  $keys = wxcity_base::load_config( double  $this- key = $keys[ mongo_db  $this- config = $configs[ connect ][$this- key];  $status = $this- connect();  if($status == false)  for($i = 1; $i $num; $i++)  $n = $this- key + $i;  $key = $n = $num ? $n - $num : $n;  $this- config = $configs[ connect ][$key];  $status = $this- connect();  if($status!=false)  $keys[ mongo_db ] = $key ;  $this- key = $key;  $data = ?php/nreturn .var_export($keys, true). /n?  file_put_contents(WHTY_PATH. configs/double.php , $data, LOCK_EX);  break;  if($status==false)  die( mongoDB not connect  function __destruct() {  if((IS_NOSQL != 1)){  return;  if($this- connection)  $this- connection- close();  * CONNECT TO MONGODB * * Establish a connection to MongoDB using the connection string generated in * the connection_string() method. If mongo_persist_key was set to true in the  * config file, establish a persistent connection. We allow for only the persist  * option to be set because we want to  establish a connection immediately. private function connect() {  $this- connection_string();  $options = array( connect = true, timeout = $this- timeout);  try {  $this- connection = new Mongo($this- connection_string, $options);  $this- db = $this- connection- {$this- dbname};  return($this);  } catch (MongoConnectionException $e) {  return false;  * BUILD CONNECTION STRING * * Build the connection string from the config file. private function connection_string() {  $this- host = trim($this- config[ hostname  $this- port = trim($this- config[ port  $this- user = trim($this- config[ username  $this- pass = trim($this- config[ password  $this- dbname = trim($this- config[ database  $this- persist = trim($this- config[ autoconnect  $this- persist_key = trim($this- config[ mongo_persist_key  $connection_string = mongodb://  if (emptyempty($this- host)) {  $this- error( The Host must be set to connect to MongoDB , 500);  } if (emptyempty($this- dbname)) {  $this- error( The Database must be set to connect to MongoDB , 500);  } if (!emptyempty($this- user) !emptyempty($this- pass)) {  $connection_string .= {$this- user}:{$this- pass}@  } if (isset($this- port) !emptyempty($this- port)) {  $connection_string .= {$this- host}:{$this- port}  } else {  $connection_string .= {$this- host}  } $this- connection_string = trim($connection_string);  * Switch_db * * Switch from default database to a different db public function switch_db($database = ) {  if (emptyempty($database)) {  $this- error( To switch MongoDB databases, a new database name must be specified , 500);  } $this- dbname = $database;  try {  $this- db = $this- connection- {$this- dbname};  return(TRUE);  } catch (Exception $e) {  $this- error( Unable to switch Mongo Databases: {$e- getMessage()} , 500);  * SELECT FIELDS * * Determine which fields to include OR which to exclude during the query process. * Currently, including and excluding at  the same time is not available, so the * $includes array will take precedence over the $excludes array. If you want to * only choose fields to exclude, leave $includes an empty array(). * @usage: $this- mongo_db- select(array( foo , bar ))- get( foobar  public function select($includes = array(), $excludes = array()) {  if (!is_array($includes)) {  $includes = array();  if (!is_array($excludes)) {  $excludes = array();  if (!emptyempty($includes)) {  foreach ($includes as $col) {  $this- selects[$col] = 1;  } else {  foreach ($excludes as $col) {  $this- selects[$col] = 0;  } return($this);  * WHERE PARAMETERS * * Get the documents based on these search parameters. The $wheres array should * be an associative array with the field  as the key and the value as the search * criteria. * * @usage = $this- mongo_db- where(array( foo = bar ))- get( foobar  public function where($wheres = array()) {  foreach ((array)$wheres as $wh = $val) {  $this- wheres[$wh] = $val;  } return($this);  * WHERE_IN PARAMETERS * * Get the documents where the value  of a $field is in a given $in array(). * @usage = $this- mongo_db- where_in( foo , array( bar , zoo , blah ))- get( foobar  public function where_in($field = , $in = array()) {  $this- where_init($field);  $this- wheres[$field][ $in ] = $in;  return($this);  * WHERE_NOT_IN PARAMETERS * * Get the documents where the value of  a $field is not in a given $in array(). * @usage = $this- mongo_db- where_not_in( foo , array( bar , zoo , blah ))- get( foobar  public function where_not_in($field = , $in = array()) {  $this- where_init($field);  $this- wheres[$field][ $nin ] = $in;  return($this);  * WHERE GREATER THAN PARAMETERS * * Get the documents where the value of  a $field is greater than $x * @usage = $this- mongo_db- where_gt( foo , 20); public function where_gt($field = , $x) {  $this- where_init($field);  $this- wheres[$field][ $gt ] = $x;  return($this);  * WHERE GREATER THAN OR EQUAL TO PARAMETERS * * Get the documents where the value of a $field is greater than or equal to $x * @usage = $this- mongo_db- where_gte( foo , 20); public function where_gte($field = , $x) {  $this- where_init($field);  $this- wheres[$field][ $gte ] = $x;  return($this);  * WHERE LESS THAN PARAMETERS * * Get the documents where the value of a $field is less than $x * @usage = $this- mongo_db- where_lt( foo , 20); public function where_lt($field = , $x) {  $this- where_init($field);  $this- wheres[$field][ $lt ] = $x;  return($this);  * WHERE LESS THAN OR EQUAL TO PARAMETERS * * Get the documents where the value of  a $field is less than or equal to $x * @usage = $this- mongo_db- where_lte( foo , 20); public function where_lte($field = , $x) {  $this- where_init($field);  $this- wheres[$field][ $lte ] = $x;  return($this);  * WHERE BETWEEN PARAMETERS * * Get the documents where the value of a $field is between $x and $y * @usage = $this- mongo_db- where_between( foo , 20, 30); public function where_between($field = , $x, $y) {  $this- where_init($field);  $this- wheres[$field][ $gte ] = $x;  $this- wheres[$field][ $lte ] = $y;  return($this);  * WHERE BETWEEN AND NOT EQUAL TO PARAMETERS * * Get the documents where the value of  a $field is between but not equal to $x and $y * @usage = $this- mongo_db- where_between_ne( foo , 20, 30); public function where_between_ne($field = , $x, $y) {  $this- where_init($field);  $this- wheres[$field][ $gt ] = $x;  $this- wheres[$field][ $lt ] = $y;  return($this);  * WHERE NOT EQUAL TO PARAMETERS * * Get the documents where the value of  a $field is not equal to $x * @usage = $this- mongo_db- where_between( foo , 20, 30); public function where_ne($field = , $x) {  $this- where_init($field);  $this- wheres[$field][ $ne ] = $x;  return($this);  * WHERE OR * * Get the documents where the value of  a $field is in one or more values  * @usage = $this- mongo_db- where_or( foo , array( foo , bar , blegh  public function where_or($field = , $values) {  $this- where_init($field);  $this- wheres[$field][ $or ] = $values;  return($this);  * WHERE AND * * Get the documents where the elements match  the specified values * * @usage = $this- mongo_db- where_and( array ( foo = 1, b = someexample  public function where_and($elements_values = array()) {  foreach ((array)$elements_values as $element = $val) {  $this- wheres[$element] = $val;  } return($this);  * WHERE MOD * * Get the documents where $field % $mod = $result * * @usage = $this- mongo_db- where_mod( foo , 10, 1 ); public function where_mod($field, $num, $result) {  $this- where_init($field);  $this- wheres[$field][ $mod ] = array($num, $result);  return($this);  /** * * Where size * * * Get the documents where the size of a field is in a given $size int * * @usage : $this- mongo_db- where_size( foo , 1)- get( foobar */  public function where_size($field = , $size = ) {  $this- _where_init($field);  $this- wheres[$field][ $size ] = $size;  return ($this);  * LIKE PARAMETERS * * Get the documents where the (string) value of  a $field is like a value. The defaults * allow for a case-insensitive search. * * @param $flags  * Allows for the typical regular expression flags: * i = case insensitive * m = multiline * x = can contain comments * l = locale  * s = dotall, . matches everything, including newlines * u = match unicode * @param $enable_start_wildcard * If set to anything other than TRUE, a starting line character ^ will be prepended * to the search value, representing only searching for a value at the start of * a new line. * * @param $enable_end_wildcard  * If set to anything other than TRUE, an ending line character $ will be appended * to the search value, representing only searching for a value at the end of * a line. * @usage = $this- mongo_db- like( foo , bar , im , FALSE, TRUE); public function like($field = , $value = , $flags = i , $enable_start_wildcard = TRUE, $enable_end_wildcard = TRUE) {  $field = (string) trim($field);  $this- where_init($field);  $value = (string) trim($value);  $value = quotemeta($value);  if ($enable_start_wildcard !== TRUE) {  $value = ^ . $value;  } if ($enable_end_wildcard !== TRUE) {  $value .= $  } $regex = /$value/$flags  $this- wheres[$field] = new MongoRegex($regex);  return($this);  public function wheres($where){  $this- wheres = $where;  * ORDER BY PARAMETERS * * Sort the documents based on the parameters passed. To set values to descending order, * you must pass values of either -1, FALSE, desc , or DESC , else they will be * set to 1 (ASC). * @usage = $this- mongo_db- where_between( foo , 20, 30); public function order_by($fields = array()) {  if (!is_array($fields) || !count($fields)) return ;  foreach ($fields as $col = $val) {  if ($val == -1 || $val === FALSE || strtolower($val) == desc ) {  $this- sorts[$col] = -1;  } else {  $this- sorts[$col] = 1;  } return($this);  * LIMIT DOCUMENTS * * Limit the result set to $x number of documents * * @usage = $this- mongo_db- limit($x); public function limit($x = 99999) {  if ($x !== NULL is_numeric($x) $x = 1) {  $this- limit = (int) $x;  } return($this);  * OFFSET DOCUMENTS * * Offset the result set to skip $x number of documents * @usage = $this- mongo_db- offset($x); public function offset($x = 0) {  if ($x !== NULL is_numeric($x) $x = 1) {  $this- offset = (int) $x;  } return($this);  * GET_WHERE * * Get the documents based upon the passed parameters * * @usage = $this- mongo_db- get_where( foo , array( bar = something  public function get_where($collection = , $where = array(), $limit = 99999, $orderby=array()) {  if (is_array($orderby) || !emptyempty($orderby)) {  $order_by = $this- order_by($order_by);  return($this- where($where)- limit($limit)- get($collection));  public function selectA($collection = , $limit = 99999, $orderby=array()) {  if(intval($limit) 1){  $limit = 999999;  $order_by = $this- order_by($orderby);  $re = $this- limit($limit)- get($collection);  $this- clear();  return (array)$re;  public function listinfo($collection = , $orderby=array(), $page=1, $pagesize=12) {  $page = max(intval($page), 1);  $offset = $pagesize * ($page - 1);  $pagesizes = $offset + $pagesize;  $this- offset($offset);  $order_by = $this- order_by($orderby);  $re = $this- limit($pagesize)- get($collection);  $this- limit(999999);  $count = $this- count($collection);  $this- pages = pages($count, $page, $pagesize);  return (array)$re;  * GET * * Get the documents based upon the passed parameters * * @usage = $this- mongo_db- get( foo , array( bar = something  public function get($collection = ) {  if (emptyempty($collection)) {  $this- error( In order to retreive documents from MongoDB, a collection name must be passed , 500);  } $results = array();  $documents = $this- db- {$collection}- find($this- wheres, $this- selects)- limit((int) $this- limit)- skip((int) $this- offset)- sort($this- sorts);  $returns = array();  foreach ($documents as $doc): $returns[] = $doc;  endforeach;  return($returns);  public function getMy($collection = ) {  if (emptyempty($collection)) {  $this- error( In order to retreive documents from MongoDB, a collection name must be passed , 500);  } $results = array();  $documents = $this- db- {$collection}- find($this- wheres, $this- selects)- limit((int) $this- limit)- skip((int) $this- offset)- sort($this- sorts);  $returns = array();  foreach ($documents as $doc): $returns[] = $doc;  endforeach;  $this - clear();  return($returns);  * COUNT * * Count the documents based upon the passed parameters * * @usage = $this- mongo_db- get( foo  public function count($collection = ) {  if (emptyempty($collection)) {  $this- error( In order to retreive a count of documents from MongoDB, a collection name must be passed , 500);  } $count = $this- db- {$collection}- find($this- wheres)- limit((int) $this- limit)- skip((int) $this- offset)- count();  $this- clear();  return($count);  * INSERT * * Insert a new document into the passed collection * * @usage = $this- mongo_db- insert( foo , $data = array()); public function insert($collection = , $data = array(), $name= ID ) {  if (emptyempty($collection)) {  $this- error( No Mongo collection selected to insert into , 500);  } if (count($data) == 0 || !is_array($data)) {  $this- error( Nothing to insert into Mongo collection or insert is not an array , 500);  } try {  wxcity_base::load_sys_class( whtysqs , ,0);  $mongoseq_class = new whtysqs( creaseidsqs  $re = $mongoseq_class- query( ?name= . $collection . opt=put data=1  **/  $re = put_sqs( list_mongo_creaseidsqs , 1  if(is_numeric($re)){  $re++;  $data[$name] = intval($re);  }else{  $data[$name] = intval(time());  //die( mongosqs error  $this- db- {$collection}- insert($data, array( fsync = TRUE));  $this- clear();  return $data[$name];  } catch (MongoCursorException $e) {  $this- error( Insert of data into MongoDB failed: {$e- getMessage()} , 500);  public function insertWithId($collection = , $data = array()) {  if (emptyempty($collection)) {  $this- error( No Mongo collection selected to insert into , 500);  } if (count($data) == 0 || !is_array($data)) {  $this- error( Nothing to insert into Mongo collection or insert is not an array , 500);  } try {  $this- db- {$collection}- insert($data, array( fsync = TRUE));  $this- clear();  return 1;  } catch (MongoCursorException $e) {  $this- error( Insert of data into MongoDB failed: {$e- getMessage()} , 500);  * UPDATE * * Update a document into the passed collection * * @usage = $this- mongo_db- update( foo , $data = array()); public function update($collection = , $data = array()) {  if (emptyempty($collection)) {  $this- error( No Mongo collection selected to update , 500);  } if (count($data) == 0 || !is_array($data)) {  $this- error( Nothing to update in Mongo collection or update is not an array , 500);  } try {  $this- db- {$collection}- update($this- wheres, array( $set = $data), array( fsync = TRUE, multiple = FALSE));  $this- clear();  return(TRUE);  } catch (MongoCursorException $e) {  $this- error( Update of data into MongoDB failed: {$e- getMessage()} , 500);  * UPDATE_ALL * * Insert a new document into the passed collection * * @usage = $this- mongo_db- update_all( foo , $data = array()); public function update_all($collection = , $data = array()) {  if (emptyempty($collection)) {  $this- error( No Mongo collection selected to update , 500);  } if (count($data) == 0 || !is_array($data)) {  $this- error( Nothing to update in Mongo collection or update is not an array , 500);  } try {  $this- db- {$collection}- update($this- wheres, array( $set = $data), array( fsync = TRUE, multiple = TRUE));  return(TRUE);  } catch (MongoCursorException $e) {  $this- error( Update of data into MongoDB failed: {$e- getMessage()} , 500);  * DELETE * * delete document from the passed collection based upon certain criteria * * @usage = $this- mongo_db- delete( foo , $data = array()); public function delete($collection = ) {  if (emptyempty($collection)) {  $this- error( No Mongo collection selected to delete from , 500);  } try {  $this- db- {$collection}- remove($this- wheres, array( fsync = TRUE, justOne = TRUE));  $this- clear();  return(TRUE);  } catch (MongoCursorException $e) {  $this- error( Delete of data into MongoDB failed: {$e- getMessage()} , 500);  * DELETE_ALL * * Delete all documents from the passed collection based upon certain criteria * @usage = $this- mongo_db- delete_all( foo , $data = array()); public function delete_all($collection = ) {  if (emptyempty($collection)) {  $this- error( No Mongo collection selected to delete from , 500);  } try {  $this- db- {$collection}- remove($this- wheres, array( fsync = TRUE, justOne = FALSE));  return(TRUE);  } catch (MongoCursorException $e) {  $this- error( Delete of data into MongoDB failed: {$e- getMessage()} , 500);  * ADD_INDEX * * Ensure an index of the keys in a collection with optional parameters. To set values to descending order, * you must pass values of either -1, FALSE, desc , or DESC , else they will be * set to 1 (ASC). * * @usage = $this- mongo_db- add_index($collection, array( first_name = ASC , last_name = -1), array( unique = TRUE)); public function add_index($collection = , $keys = array(), $options = array()) {  if (emptyempty($collection)) {  $this- error( No Mongo collection specified to add index to , 500);  } if (emptyempty($keys) || !is_array($keys)) {  $this- error( Index could not be created to MongoDB Collection because no keys were specified , 500);  } foreach ($keys as $col = $val) {  if ($val == -1 || $val === FALSE || strtolower($val) == desc ) {  $keys[$col] = -1;  } else {  $keys[$col] = 1;  } if ($this- db- {$collection}- ensureIndex($keys, $options) == TRUE) {  $this- clear();  return($this);  } else {  $this- error( An error occured when trying to add an index to MongoDB Collection , 500);  * REMOVE_INDEX * * Remove an index of the keys in a collection. To set values to descending order, * you must pass values of either -1, FALSE, desc , or DESC , else they will be * set to 1 (ASC). * * @usage = $this- mongo_db- remove_index($collection, array( first_name = ASC , last_name = -1)); public function remove_index($collection = , $keys = array()) {  if (emptyempty($collection)) {  $this- error( No Mongo collection specified to remove index from , 500);  } if (emptyempty($keys) || !is_array($keys)) {  $this- error( Index could not be removed from MongoDB Collection because no keys were specified , 500);  } if ($this- db- {$collection}- deleteIndex($keys, $options) == TRUE) {  $this- clear();  return($this);  } else {  $this- error( An error occured when trying to remove an index from MongoDB Collection , 500);  * REMOVE_ALL_INDEXES * * Remove all indexes from a collection. * * @usage = $this- mongo_db- remove_all_index($collection); public function remove_all_indexes($collection = ) {  if (emptyempty($collection)) {  $this- error( No Mongo collection specified to remove all indexes from , 500);  } $this- db- {$collection}- deleteIndexes();  $this- clear();  return($this);  * LIST_INDEXES * * Lists all indexes in a collection. * * @usage = $this- mongo_db- list_indexes($collection); public function list_indexes($collection = ) {  if (emptyempty($collection)) {  $this- error( No Mongo collection specified to remove all indexes from , 500);  } return($this- db- {$collection}- getIndexInfo());  * DROP COLLECTION * * Removes the specified collection from the database. Be careful because this * can have some very large issues in production! public function drop_collection($collection = ) {  if (emptyempty($collection)) {  $this- error( No Mongo collection specified to drop from database , 500);  } $this- db- {$collection}- drop();  return TRUE;  * CLEAR * * Resets the class variables to default settings private function clear() {  $this- selects = array();  $this- wheres = array();  $this- limit = NULL;  $this- offset = NULL;  $this- sorts = array();  * WHERE INITIALIZER * * Prepares parameters for insertion in $wheres array(). private function where_init($param) {  if (!isset($this- wheres[$param])) {  $this- wheres[$param] = array();  public function error($str, $t) {  echo $str;  exit; ? 

使用范例:

$table_name=trim(strtolower($this- table_name)); $this- mongo_db- where($where); $order=!emptyempty($order)?array( AID = DESC ):array( AID = ASC //升序降序 $infos=$this- mongo_db- listinfo($table_name,$order,$page,$pagesize);

總結:以上就是本篇文的全部內容,希望能對大家的學習有所幫助。

相關推薦:

php利用正則表達式提取內容中的鏈接

PHP實現漢字驗證碼

php遞歸遍歷實現無限分類

以上就是分析php中的mongodb操作類的詳細內容,PHP教程

鄭重聲明:本文版權歸原作者所有,轉載文章僅為傳播更多信息之目的,如作者信息標記有誤,請第一時間聯系我們修改或刪除,多謝。

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
亚洲香蕉成人av网站在线观看_欧美精品成人91久久久久久久_久久久久久久久久久亚洲_热久久视久久精品18亚洲精品_国产精自产拍久久久久久_亚洲色图国产精品_91精品国产网站_中文字幕欧美日韩精品_国产精品久久久久久亚洲调教_国产精品久久一区_性夜试看影院91社区_97在线观看视频国产_68精品久久久久久欧美_欧美精品在线观看_国产精品一区二区久久精品_欧美老女人bb
亚洲精品国产电影| 国产一区二区三区在线免费观看| 欧美色xxxx| 午夜伦理精品一区| 欧美性猛交xxxx黑人| 国产精品久久久久7777婷婷| 久久伊人精品一区二区三区| 成人免费高清完整版在线观看| 久久在线免费视频| 国产精品黄色影片导航在线观看| 日韩在线激情视频| 日韩电影网在线| 日本精品视频网站| 欧美日韩性视频在线| 91黑丝在线观看| 精品中文字幕在线2019| 久久久久久亚洲| 亚洲欧美日韩区| 2021久久精品国产99国产精品| 久久天天躁狠狠躁夜夜躁| 午夜精品久久久久久久久久久久久| 亚洲性无码av在线| 国产成人av在线| 国产精品va在线播放我和闺蜜| 亚洲国产精彩中文乱码av在线播放| 精品人伦一区二区三区蜜桃网站| 亚洲偷欧美偷国内偷| 欧美精品一二区| 日韩av在线导航| 久久亚洲精品成人| 日韩欧美亚洲国产一区| 亚洲美女自拍视频| 亚洲国产欧美在线成人app| 亚洲人成在线免费观看| 亚洲色图50p| 久久久999精品视频| 97人洗澡人人免费公开视频碰碰碰| 九九热99久久久国产盗摄| 亚洲 日韩 国产第一| 欧美电影免费观看网站| 欧美激情免费看| 国产精品日韩电影| 欧美专区在线视频| 91久久精品久久国产性色也91| 亚洲伊人久久大香线蕉av| 久久精品视频导航| 欧美黄色性视频| 国产69精品99久久久久久宅男| 色无极影院亚洲| 国产精品扒开腿做爽爽爽视频| 日韩极品精品视频免费观看| 亚洲欧美国产高清va在线播| 欧美精品videos性欧美| 久久国产精品视频| 欧美激情免费看| 精品成人乱色一区二区| 91色p视频在线| 91精品国产色综合久久不卡98| 成人网中文字幕| 精品欧美aⅴ在线网站| 68精品国产免费久久久久久婷婷| 91chinesevideo永久地址| 久操成人在线视频| 精品国产一区二区三区久久久| 91在线直播亚洲| 亚洲欧美日韩一区二区三区在线| 日韩免费黄色av| 亚洲日本欧美中文幕| 日韩黄色av网站| 97色在线播放视频| 欧美高清不卡在线| 91综合免费在线| 色偷偷偷综合中文字幕;dd| 成人免费福利在线| 91精品国产自产在线| 欧美日韩在线影院| 国产精品亚洲自拍| 91国产在线精品| 亚洲成人精品久久久| 成人黄色短视频在线观看| 91高清视频在线免费观看| www国产91| 国产精品91久久久| 91在线观看免费观看| 欧美一性一乱一交一视频| 亚洲直播在线一区| 亚洲黄色片网站| 亚洲精品97久久| 色综合久久精品亚洲国产| 国产日韩欧美中文在线播放| 欧美另类99xxxxx| 国产精品日韩久久久久| 日韩大片免费观看视频播放| 亚洲最大成人免费视频| 国产69精品久久久久9| 日韩精品欧美激情| 国产在线精品自拍| 亚洲电影在线看| 亚洲午夜精品久久久久久久久久久久| 欧美性极品xxxx娇小| 欧美大片欧美激情性色a∨久久| 日韩高清a**址| 欧美黑人巨大xxx极品| 亚洲成人在线视频播放| 51精品在线观看| 7777精品久久久久久| 91麻豆国产精品| 国产精品中文在线| 中文字幕一区二区精品| 精品国产91久久久久久| 国产精品999| 成人黄色大片在线免费观看| 亚洲国产精品成人精品| 91超碰caoporn97人人| 欧美成人在线网站| 亚洲人成77777在线观看网| 成人免费自拍视频| 91精品视频在线看| 国内精品一区二区三区四区| 亚洲欧洲一区二区三区在线观看| 日本精品性网站在线观看| 亚洲国产成人在线视频| 精品中文字幕在线观看| 亚洲国产日韩欧美在线动漫| 久久久噜噜噜久久| 91欧美精品午夜性色福利在线| 在线播放国产精品| 欧美黑人一级爽快片淫片高清| 久久久久久久香蕉网| 日韩高清中文字幕| 最新69国产成人精品视频免费| 青青草成人在线| 毛片精品免费在线观看| 亚洲第一视频在线观看| 精品国产依人香蕉在线精品| 久久艳片www.17c.com| 久久精品电影一区二区| xvideos国产精品| 日韩在线观看免费全集电视剧网站| 欧美综合在线第二页| 久久人人爽人人爽人人片亚洲| 国产一区视频在线| 91av在线免费观看| 欧美在线视频导航| 国产视频在线观看一区二区| 97精品国产91久久久久久| 亚洲福利视频网| 91亚洲精品一区| 夜色77av精品影院| 国产欧美精品久久久| 大胆人体色综合| 最好看的2019年中文视频| 久久成人人人人精品欧| 一本色道久久综合狠狠躁篇的优点| www国产亚洲精品久久网站| 九九热99久久久国产盗摄| 亚洲高清在线观看| 国产精品午夜一区二区欲梦| 亚洲精品自产拍| 欧美日韩中国免费专区在线看| 国产精品爽爽爽爽爽爽在线观看| 成人av资源在线播放| 日韩激情av在线播放| 色偷偷偷亚洲综合网另类|