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

首頁 > 數(shù)據(jù)庫 > MongoDB > 正文

php實現(xiàn)的mongodb操作類實例

2020-03-22 19:05:00
字體:
供稿:網(wǎng)友
* 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);

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

發(fā)表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發(fā)表
3d动漫啪啪精品一区二区免费| 国产精品一久久香蕉国产线看观看| 免费在线观看a视频| 国产精品久久久久久久久毛片| 97超碰国产在线| 国产精品玖玖玖在线资源| 日本不卡视频一区二区| 97视频在线免费| 久久久久久夜精品精品免费| 日韩精品中文字| 中文字幕第15页| 成视频免费在线看| 国产精品国三级国产av| 午夜视频在线免费播放| 日本蜜桃在线观看| 91精品国产综合久久精品app| 亚洲 欧美 变态 另类 综合| 男女性高潮免费网站| 中文字幕激情视频| 欧美伊人亚洲伊人色综合动图| 涩涩网站在线观看| 亚洲女同另类| 国产一区二区导航在线播放| 亚洲综合激情六月婷婷在线观看| 免费精品国产的网站免费观看| 大菠萝精品导航| 4444kk亚洲人成电影在线| 蜜桃av乱码一区二区三区| 亚洲精品www| 日韩欧美在线观看视频| 国产精品久久久久久久久久免费看| 天天干天天操天天做| 99久久精品费精品国产风间由美| 农民人伦一区二区三区| 国际精品欧美精品| 精品国产欧美一区二区三区成人| 在线观看 亚洲| 成人黄色免费网站在线观看| 国产又黄又爽免费视频| 久久久精品视频在线观看| 3d蒂法精品啪啪一区二区免费| 久久aⅴ国产欧美74aaa| 在线看片网址| 中文久久乱码一区二区| 一区二区不卡视频在线观看| 成人在线观看免费完整| 国产精品视频首页| 欧美一区二区人人喊爽| 国产风韵犹存在线视精品| 国产精品xxx在线观看www| 精品美女被调教视频大全网站| 91精品久久久久久综合乱菊| www.五月婷婷| 国产九九精品视频| 亚洲不卡av一区二区三区| 国产黄在线观看免费观看不卡| 日韩视频在线一区二区| 在线天堂新版最新版在线8| 日本亚洲精品在线观看| 久久久久国产精品夜夜夜夜夜| 在线视频2区| 思思久久精品视频| 免费成人在线影院| 天堂久久精品忘忧草| 热99精品只有里视频最新| 久久中文字幕在线观看| 毛片在线导航| 91麻豆精品国产91久久久| 一二三级黄色片| 欧美综合在线视频| 亚洲不卡免费视频| 国产suv一区二区| 久草在线免费二| 青青草97国产精品免费观看无弹窗版| 中文有码在线| 欧美日韩精品一区二区在线播放| 色啪免费观看视频| 欧美猛男男男激情videos| 亚洲国产精品91| 51精品视频一区二区三区| 青娱乐精品在线视频| 成人在线国产视频| 亚洲国产另类av| 国产成人在线网址| 精品亚洲男同gayvideo网站| 国产一区二区三区av在线| 欧美日韩一区三区四区| 国产精品91视频| 天天干在线视频论坛| 国产女人18毛片水真多成人如厕| 亚洲天堂网站| 国产综合久久久久久| 亚洲电影网站| 91在线观看高清| 一个人看的免费网站www视频| 免费成人美女在线观看.| 亚洲人成人无码网www国产| 精产国品一区二区三区| 亚洲视频日韩精品| 日韩欧美一区二区久久婷婷| 国产 xxxx| 日本午夜精品久久久| 日产国产高清一区二区三区| 不卡的在线视频| 欧美国产日本在线| 少妇视频在线播放| 992tv在线观看在线播放| 欧美激情综合| 超碰av女优在线| 69久成人做爰电影| 欧美日韩理论| 久久小说免费下载| 两个人看的无遮挡免费视频| 日韩精品一区二区三区不卡| 一根才成人网| 亚洲免费网站观看视频| 91成人影院| 成人福利网址| 97人人精品| 精品人妻一区二区三区含羞草| www色啪啪| ass白嫩白嫩的小美女| 黄色国产网站在线播放| 亚洲妇女无套内射精| 国产激情视频网址| 日韩影片在线播放| 欧美伊人久久久久久久久影院| 国产视频久久久久久| 美女福利精品视频| 欧美色爱综合网| 精品精品国产三级a∨在线| 日韩精品欧美成人高清一区二区| 在线成人免费视频| 午夜福利理论片在线观看| 国产乱码精品一区二区三区亚洲人| 欧美精品亚洲二区| 一区二区三区午夜视频| 亚洲精品小区久久久久久| 牛牛精品成人免费视频| 亚洲最大成人综合| 黄色大片网站在线观看| 色噜噜成人av在线| 91传媒免费观看| 114美女做爰视频在线| 免费a视频在线观看| 中文字幕av手机在线| 色综合天天综合网中文字幕| 一区二区三区导航| 岛国毛片在线观看| 97精品人妻一区二区三区蜜桃| 国产精品主播在线观看| 99久久久免费精品国产一区二区| 久久国产精品久久久久久| 蜜臀av性久久久久蜜臀av| 国产一区二区在线免费| 欧美男男激情videos| 欧美人与性动xxxx| 69xx绿帽三人行| 国产精品一区二区三区观看| 一本久道综合色婷婷五月| 91最新在线免费观看| 九色porny自拍视频在线播放| 精品成人无码久久久久久| 中文字幕第21页| 日韩av免费大片| 777永久免费网站国产| 欧美一二三区在线| 国内精品久久久久久不卡影院| 亚洲在线免费观看视频| 日本福利视频| 综合激情一区| 久久精品国产久精国产思思| 亚洲女人被黑人巨大进入al| 韩国日本在线视频| 好吊妞国产欧美日韩免费观看网站| 91美女视频| 真实原创一区二区影院| 五月婷婷开心综合| 欧美精品少妇| 国产av无码专区亚洲a∨毛片| 国产精品成人一区二区网站软件| 久久国产成人午夜av影院| 性欧美高清come| www.在线播放| 97人妻人人澡人人爽人人精品| 777色狠狠一区二区三区| 精品99在线| 日韩一区精品字幕| 欧美不卡一区二区三区四区| 青青草精品在线| 国产精品福利无圣光在线一区| 最新日韩中文字幕| 人妻精油按摩bd高清中文字幕| 免费日韩一级片| 欧美激情精品久久久久| 麻豆国产欧美一区二区三区r| 国产在线播放91| 影音欧美亚洲| 中文字幕国产传媒| 日韩亚洲一区中文字幕| 久久综合久久综合亚洲| 99精品久久久久久| 久久精品99无色码中文字幕| 国产视频一区二区在线播放| 黄瓜视频免费观看在线观看www| 欧美日韩国产电影| 国产一区在线观看麻豆| 缴情综合网五月天| 国产午夜精品在线| 国产精品久久久久久久久久直播| 天天干天天摸| 亚洲xxxxx性| 300部国产真实乱| 亚洲一区二区中文| 国产精品果冻传媒| 久久高清视频免费| 性欧美videos精品| 久久久天堂av| 精品久久免费| 久久久久久国产免费| 色综合久久综合网欧美综合网| 中文字幕久热精品在线视频| 色噜噜狠狠一区二区三区狼国成人| 精品久久久免费视频| 国产精品宾馆| 国产免播放器视频| 蜜桃福利入口| 美女喷水白浆| 精品处破学生在线二十三| 亚洲va男人天堂| 亚洲精品一区二区三区四区高清| 91午夜在线| xxx性欧美| 理论片日本一区| 国产精品美女视频| 亚洲精品天天看| 四虎成年永久免费网站| 日本午夜精品视频| 日韩大片免费观看| 久久婷婷久久| 国产男女裸体做爰爽爽| 91精品国产三级| 国产精品视频免费看| 2019天天干夜夜操| 中文字幕精品视频在线观看| 99色在线观看| 精品欧美一区二区三区在线观看| 日韩视频免费中文字幕| 亚洲aⅴ网站| 久久精品福利| 久久免费在线观看| 国产精品福利在线| 蜜桃传媒一区二区| 国产一二三四区在线| 国产美女视频免费观看下载软件| 欧美高清一级大片| 欧美视频在线观看一区| 免费看美女隐私的视频| 国产一区二区黄| 久久爱.com| 精品国产乱码久久久久久影片| 欧美黄色激情视频| 国产手机av在线| seba5欧美综合另类| 欧美一级在线看| 伊人色综合久久天天五月婷| 5566成人精品视频免费| 国产露脸无套对白在线播放| 你真棒插曲来救救我在线观看| 亚洲国产中文字幕| 亚洲1024| 国产精品精品国产一区二区| 久久久久久久久久网| 日本中文字幕高清| 中文字幕在线天堂| 久久九九热免费视频| 亚洲无亚洲人成网站77777| 91麻豆国产福利在线观看| 天天干在线影院| 日韩中文字幕免费| 2020国产精品视频| www.狠狠色.com| 国产成人亚洲精品播放器下载| 爱福利在线视频| 国产精品99久久久久久似苏梦涵| 亚洲欧美伊人| 国产无套粉嫩白浆内谢的出处| 一本大道熟女人妻中文字幕在线| 鲁丝片一区二区三区| 精品人妻一区二区三区蜜桃视频| 欧美日韩国产不卡| 日本在线观看一区二区| 国产97在线视频| 久久久久久久久久久久久久久久久久av| 欧美在线视频a| 狠狠躁狠狠躁视频专区| 女人床在线观看| 日本50路肥熟bbw| 97在线公开视频| 亚洲一二三四2021不卡| 我的公把我弄高潮了视频| 日韩一级特黄毛片| 成年人免费影院| 国产99在线|亚洲| 一区二区三区区四区播放视频在线观看| 久久婷婷av| 成人免费看片98欧美| 亚洲理论电影| 国产一区二区三区在线免费观看| 久久精品日产第一区二区三区高清版| 波多野结衣高清视频| 成人精品视频一区| 九九久久久久午夜精选| 天天干天天插天天射| 国产精品视频yy9099| 免费人成黄页网站在线一区二区| www.五月天激情| 欧美酷刑日本凌虐凌虐| 国产毛片欧美毛片久久久| 色婷婷狠狠五月综合天色拍| 国产精品久久久久9999爆乳| 国产乱码77777777| 久久欧美中文字幕| 亚洲国产另类久久精品| jjzzjjzz欧美69巨大| 国产主播性色av福利精品一区| 日本免费一级视频| caoporn97免费视频公开|