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

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

分析php中的mongodb操作類

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

本文實例講述了php實現(xiàn)的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);

總結(jié):以上就是本篇文的全部內(nèi)容,希望能對大家的學(xué)習有所幫助。

相關(guān)推薦:

php利用正則表達式提取內(nèi)容中的鏈接

PHP實現(xiàn)漢字驗證碼

php遞歸遍歷實現(xiàn)無限分類

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

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

發(fā)表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發(fā)表
欧洲一区在线| 国产精品欧美激情| 欧美性另类69xxxx| 亚洲裸体视频| 国产手机精品视频| 中文字幕av免费在线观看| eeuss影院在线观看| 伊人成人开心激情综合网| 天天摸在线视频| 国产精品美女诱惑| 亚洲天堂手机版| eeuss影影院www在线播放| 91黄视频在线观看| 91久久精品日日躁夜夜躁国产| 男女羞羞电影免费观看| 高清欧美性猛交xxxx黑人猛交| 国产盗摄xxxx视频xxx69| 精品国产区一区| 精品一区二区三区日本| av观看网址| 国语自产精品视频在线看一大j8| 99精品国自产在线| 污污的视频在线免费观看| 久久99精品这里精品3| 国产成人一区二区三区| 欧美日韩一区二区综合| 久久激情一区| 亚洲精品98久久久久久中文字幕| 在线天堂中文www视软件| 中文字幕一区二区三区最新| 免费观看中文字幕| 777xxx欧美| 精品五月天久久| 日韩在线观看你懂的| www.狠狠操.com| 国产91对白刺激露脸在线观看| 久久精品一区二区三区不卡免费视频| 日本一区二区中文字幕| 国产精品自拍三区| 九九热精品视频在线| 日本午夜一本久久久综合| 日韩欧美精品| 欧美做受777cos| 国产精品三级美女白浆呻吟| 精品久久国产97色综合| 久久一留热品黄| 日产福利视频在线观看| 日本精品va在线观看| 熟女丰满老熟女熟妇| 午夜视频免费在线| 国产一区二区三区黄视频| 波多野在线播放| 亚洲人成亚洲人成在线观看图片| 老师让我她我爽了好久视频| 青草视频在线免费直播| 精品成人影院| 国产精品视频一区二区三区不卡| 亚洲视频自拍偷拍| 日本成人免费在线观看| 亚洲最大成人网4388xx| 欧美6699| 精品久久久久99| 国产精品久久久久久久岛一牛影视| 激情婷婷综合网| 福利资源在线久| 日本wwwxxxx| 欧美日韩精品在线观看视频| 狠狠久久五月精品中文字幕| 久热成人在线视频| 99精产国品一二三产品香蕉| 大尺度一区二区| 天天操天天射天天色| 深夜福利日韩在线看| 欧美精品日日操| 好吊妞www.84com只有这里才有精品| 日韩电影中文字幕av| 少妇特黄a一区二区三区| 最新日韩免费视频| 欧美国产一级| 青青草娱乐视频| 一级毛片免费视频| 影音先锋日韩在线| 欧美熟妇一区二区| 久久亚洲精选| 亚洲奶汁xxxx哺乳期| 欧美性猛交xxxx乱大交极品| 亚洲精品tv久久久久久久久| 精品众筹模特私拍视频| 色综合久久88色综合天天看泰| 亚洲午夜久久久久久久久| 亚洲一区二区在线观看视频| 在线观看欧美一区二区| 亚洲高清视频中文字幕| 你懂得在线网址| 一区二区欧美日韩视频| 欧美日韩精品欧美日韩精品一综合| 污香蕉视频在线观看| 久草在线中文888| 2012中文字幕在线视频| 国产专区一区二区三区| 天天色天天上天天操| 亚洲欧美丝袜中文综合| 国产91av在线播放| 欧美色大人视频| 国产少妇在线观看| 国产一区中文字幕| 五月激情久久久| www亚洲欧美| 91在线视频观看免费| 中文字幕一区二区精品| 特黄视频免费看| 超碰免费在线播放| 久久精品久久综合| 国产精品xxxxxx| 欧美在线三区| 国产视频911| 色播五月激情五月| 能在线观看的av| 亚洲影院污污.| 国产成人自拍视频在线观看| 欧美成人精品三级在线观看| 亚欧美无遮挡hd高清在线视频| 91精品国产九九九久久久亚洲| 男生女生差差差的视频在线观看| 国内av一区二区三区| 国产在线播放一区| 欧美mv日韩mv| 在线观看免费视频高清游戏推荐| 国产一级二级三级视频| 91精品天堂| 午夜18视频在线观看| 欧美激情啊啊啊| 色999韩欧美国产综合俺来也| 国产黄在线免费观看| 日本又骚又刺激的视频在线观看| 国产视频欧美| 国产成人无码a区在线观看视频| 日韩免费高清视频| 91久久精品国产91久久| 一本色道69色精品综合久久| 69影院欧美专区视频| 日韩欧美视频一区二区| 战狼4完整免费观看在线播放版| 在线免费av网址| jizz18女人| 成人动漫一区二区三区| 污视频在线免费观看网站| 青青草国产精品亚洲专区无| 老汉色老汉首页av亚洲| 999久久久免费精品国产牛牛| 精品国产91| 欧美一级本道电影免费专区| 日韩欧美一区电影| 亚洲精品视频啊美女在线直播| 国产二区视频在线观看| 国产在线黄色片| 亚洲精品一区二区三区av| 国产区亚洲区欧美区| 欧美日韩蜜桃| 欧美福利一区二区三区| 色呦呦中文字幕| 国产最新视频在线观看| 久久99精品久久久野外观看| 久久99久久98精品免观看软件| 色天堂在线视频| 久久精品日产第一区二区三区| 欧美手机在线| 欧美人与性动交α欧美精品济南到| 丁香网亚洲国际| 中文字幕一区视频| 久久综合狠狠综合久久综青草| av免费播放网址| 亚洲永久精品在线观看| 欧美黑人狂野猛交老妇| 亚洲高清国产精品| 97久久人国产精品婷婷| 霍思燕三级露全乳照| 一区二区视频免费| 国产精品igao视频| 情se视频网在线观看| 日韩精品中文字幕久久臀| 色先锋av资源中文字幕| 99精品美女| 国产又大又长又粗又黄| 人体精品一二三区| 天天视频天天爽| 国产精品极品美女粉嫩高清在线| 国产精品无码粉嫩小泬| 精品在线一区二区三区| 桃子视频成人app| 在线观看视频91| 欧美大胆成人| 亚洲精品久久久久久一区二区| 日本免费一级视频| 999福利视频| 成人免费看视频| 欧美一级特黄aaaaaa在线看片| 精品欧美aⅴ在线网站| 日韩亚洲欧美中文三级| 狠狠狠色丁香婷婷综合激情| 亚洲 欧美 日韩系列| 国产剧情一区二区在线观看| 青青草视频社区| 在线播放91| 一区二区三区在线视频播放| 精品国产一区二区三区不卡| 日本免费在线观看| 成人伊人精品色xxxx视频| 国产91丝袜美女在线播放| 浪潮色综合久久天堂| 亚洲精品你懂的| 成人综合网址| 国产sm调教视频| 亚洲欧美国产日韩综合| 色哟哟免费在线观看| 中文字幕国产在线观看| 97精品久久久| 亚洲第一视频在线观看| 国产亚洲综合精品| 精品国产乱码久久久久久郑州公司| 亚洲专区国产精品| caoporen国产精品| 一本色道久久88综合亚洲精品ⅰ| 国产性生交xxxxx免费| 精品国产一区二区三区麻豆免费观看完整版| 一区二区三区一级片| 久久精品久久国产| 精品一区久久久| 激情成人在线视频| 一本大道久久a久久精品综合| 欧美精品videosbestsex另类| 喷水视频在线观看| heyzo亚洲| 波多野结衣久久精品| 色噜噜在线网| 成人小视频在线看| 亚洲一区亚洲二区| 亚洲精品国产成人| 亚洲成人网上| 欧美色图欧美色图| 韩国xxxx做受gayxxxx| 日韩女同一区二区三区| 色狠狠久久av五月综合|| 亚洲欧美日韩精品久久亚洲区| 毛片在线视频观看| 在线观看国产一区二区| 一级全黄裸体免费视频| av在线免费观看不卡| 日韩精品一区二区免费| 在线播放黄色网址| 日韩成人一区二区三区在线观看| 天天操天天综合网| 我要看一级黄色录像| 国产视频中文字幕在线观看| 亚洲春色在线| 高清一区二区三区日本久| 国产亚洲一区在线播放| 免费在线黄色片| 999国产视频| 日本精品一区二区三区视频| 国产一级黄色电影| 久久精子c满五个校花| 日本三级黄色网址| av久久久久久| 亚洲精品乱码久久久久久黑人| 久久最新资源网| 中文字幕精品一区二区三区在线| 四虎4hutv紧急入口| 国产一区二区三区三区在线观看| 亚洲成av人片一区二区梦乃| 欧美mv日韩mv国产网站| 精品欧美在线观看| 国精产品一区一区三区mba视频| 中文字幕中文字幕在线中高清免费版| 极品日韩av| 国产日产亚洲精品| 日本18视频网站| 色欧美片视频在线观看在线视频| 美女扒开腿让男人桶爽久久软| 亚洲一区中文日韩| 成 人片 黄 色 大 片| 国产日韩欧美视频在线观看| 亚洲成a人片77777在线播放| 在线观看免费91| 蜜臀99久久精品久久久久久软件| 亚洲日本中文字幕免费在线不卡| 一区二区欧美日韩视频| 日本高清免费不卡视频| 欧美激情 亚洲a∨综合| 99香蕉久久| 台湾佬成人网| 日韩精品一线二线三线| 美女做暖暖视频免费在线观看全部网址91| 亚洲国产精品一区二区尤物区| 中文字幕欧美激情极品| 国产porny蝌蚪视频| 一本大道香蕉久久| 性感少妇一区| 久久中文字幕在线| 亚洲美女动态图120秒| 国产农村妇女毛片精品久久| 日本高清不卡三区| 日本肉体xxxx裸体784大胆| 欧美挤奶吃奶水xxxxx| 成人自拍视频| 麻豆av在线播放| 国产午夜精品一区二区| 小泽玛利亚一区二区三区视频| 亚洲国产精品一区二区www| 日本不卡二三区| 国产欧美日韩综合一区在线观看| 91在线精品一区二区三区| 九色成人搞黄网站| 欧美激情一级片一区二区| 综合久久成人| 欧美日产国产精品| 亚洲天天综合| 亚洲性69xxxbbb| 亚洲精品久久久狠狠狠爱| 国产精品狼人色视频一区| 欧美三级黄视频| 日韩欧美国产大片| 亚洲日本va| 精品在线免费观看视频| 91久久久久久久久久久久| 亚洲精品久久久久久久久| 久久久久久五月天久久久久久久久| 亚洲精品人人|