3atv精品不卡视频,97人人超碰国产精品最新,中文字幕av一区二区三区人妻少妇,久久久精品波多野结衣,日韩一区二区三区精品

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

Laravel Lumen 数组操作

發布時間:2024/1/1 编程问答 25 豆豆
生活随笔 收集整理的這篇文章主要介紹了 Laravel Lumen 数组操作 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

php原生:http://www.w3school.com.cn/php/php_ref_array.asp

Lumen方法:https://laravel.com/docs/5.6/helpers

Collections類方法:https://laravel.com/docs/5.6/collections?https://learnku.com/docs/laravel/5.8/collections/3916

PHP原生

array_column() 從二維數組取對應鍵的值,組成新數組 <?php // 表示由數據庫返回的可能記錄集的數組 $a = [['id' => 5698,'first_name' => 'Bill','last_name' => 'Gates',],['id' => 4767,'first_name' => 'Steve','last_name' => 'Jobs',],['id' => 3809,'first_name' => 'Mark','last_name' => 'Zuckerberg',] ];$last_names = array_column($a, 'last_name'); print_r($last_names); ?>

輸出

[ [0] => Gates[1] => Jobs[2] => Zuckerberg ] array_combine() 兩個數組組成新的二維數組,其中的一個數組是鍵名,另一個數組的值為鍵值 <?php $fname=array("Bill","Steve","Mark"); $age=array("60","56","31");$c=array_combine($fname,$age); print_r($c); ?>

?輸出

Array ( [Bill] => 60 [Steve] => 56 [Mark] => 31 )

下面是一些常用的原生函數

函數描述
array()創建數組。
array_change_key_case()把數組中所有鍵更改為小寫或大寫。
array_chunk()把一個數組分割為新的數組塊。
array_column()返回輸入數組中某個單一列的值。
array_combine()通過合并兩個數組來創建一個新數組。
array_count_values()用于統計數組中所有值出現的次數。
array_diff()比較數組,返回差集(只比較鍵值)。
array_diff_assoc()比較數組,返回差集(比較鍵名和鍵值)。
array_diff_key()比較數組,返回差集(只比較鍵名)。
array_diff_uassoc()比較數組,返回差集(比較鍵名和鍵值,使用用戶自定義的鍵名比較函數)。
array_diff_ukey()比較數組,返回差集(只比較鍵名,使用用戶自定義的鍵名比較函數)。
array_fill()用給定的鍵值填充數組。
array_fill_keys()用指定鍵名的給定鍵值填充數組。
array_filter()用回調函數過濾數組中的元素。
array_flip()交換數組中的鍵和值。
array_intersect()比較數組,返回交集(只比較鍵值)。
array_intersect_assoc()比較數組,返回交集(比較鍵名和鍵值)。
array_intersect_key()比較數組,返回交集(只比較鍵名)。
array_intersect_uassoc()比較數組,返回交集(比較鍵名和鍵值,使用用戶自定義的鍵名比較函數)。
array_intersect_ukey()比較數組,返回交集(只比較鍵名,使用用戶自定義的鍵名比較函數)。
array_key_exists()檢查指定的鍵名是否存在于數組中。
array_keys()返回數組中所有的鍵名。
array_map()把數組中的每個值發送到用戶自定義函數,返回新的值。
array_merge()把一個或多個數組合并為一個數組。
array_merge_recursive()遞歸地合并一個或多個數組。
array_multisort()對多個數組或多維數組進行排序。
array_pad()用值將數組填補到指定長度。
array_pop()刪除數組的最后一個元素(出棧)。
array_product()計算數組中所有值的乘積。
array_push()將一個或多個元素插入數組的末尾(入棧)。
array_rand()返回數組中一個或多個隨機的鍵。
array_reduce()通過使用用戶自定義函數,以字符串返回數組。
array_replace()使用后面數組的值替換第一個數組的值。
array_replace_recursive()遞歸地使用后面數組的值替換第一個數組的值。
array_reverse()以相反的順序返回數組。
array_search()搜索數組中給定的值并返回鍵名。
array_shift()刪除數組中首個元素,并返回被刪除元素的值。
array_slice()返回數組中被選定的部分。
array_splice()刪除并替換數組中指定的元素。
array_sum()返回數組中值的和。
array_udiff()比較數組,返回差集(只比較值,使用一個用戶自定義的鍵名比較函數)。
array_udiff_assoc()比較數組,返回差集(比較鍵和值,使用內建函數比較鍵名,使用用戶自定義函數比較鍵值)。
array_udiff_uassoc()比較數組,返回差集(比較鍵和值,使用兩個用戶自定義的鍵名比較函數)。
array_uintersect()比較數組,返回交集(只比較值,使用一個用戶自定義的鍵名比較函數)。
array_uintersect_assoc()比較數組,返回交集(比較鍵和值,使用內建函數比較鍵名,使用用戶自定義函數比較鍵值)。
array_uintersect_uassoc()比較數組,返回交集(比較鍵和值,使用兩個用戶自定義的鍵名比較函數)。
array_unique()刪除數組中的重復值。
array_unshift()在數組開頭插入一個或多個元素。
array_values()返回數組中所有的值。
array_walk()對數組中的每個成員應用用戶函數。
array_walk_recursive()對數組中的每個成員遞歸地應用用戶函數。
arsort()對關聯數組按照鍵值進行降序排序。
asort()對關聯數組按照鍵值進行升序排序。
compact()創建包含變量名和它們的值的數組。
count()返回數組中元素的數目。
current()返回數組中的當前元素。
each()返回數組中當前的鍵/值對。
end()將數組的內部指針指向最后一個元素。
extract()從數組中將變量導入到當前的符號表。
in_array()檢查數組中是否存在指定的值。
key()從關聯數組中取得鍵名。
krsort()對數組按照鍵名逆向排序。
ksort()對數組按照鍵名排序。
list()把數組中的值賦給一些變量。
natcasesort()用“自然排序”算法對數組進行不區分大小寫字母的排序。
natsort()用“自然排序”算法對數組排序。
next()將數組中的內部指針向前移動一位。
pos()current() 的別名。
prev()將數組的內部指針倒回一位。
range()創建包含指定范圍單元的數組。
reset()將數組的內部指針指向第一個元素。
rsort()對數組逆向排序。
shuffle()將數組打亂。
sizeof()count() 的別名。
sort()對數組排序。
uasort()使用用戶自定義的比較函數對數組中的鍵值進行排序。
uksort()使用用戶自定義的比較函數對數組中的鍵名進行排序。
usort()使用用戶自定義的比較函數對數組進行排序。

Lumen方法

array_only() 取數組對應鍵的值,組成新的數組 $request = $this->request->all();//['title' => 'test', 'content' => 'test', 'name' => 'test'] $condition = array_only($request, ['title', 'content']);

?輸出

['title' => 'test', 'content' => 'test']

方法列表

數組和對象

array_add()

array_add如果給定的鍵在數組中不存在,則該函數將給定的鍵/值對添加到數組中:

$array = array_add(['name' => 'Desk'], 'price', 100);// ['name' => 'Desk', 'price' => 100]

array_collapse()

該array_collapse函數將數組數組折疊為單個數組:

$array = array_collapse([[1, 2, 3], [4, 5, 6], [7, 8, 9]]);// [1, 2, 3, 4, 5, 6, 7, 8, 9]

array_divide()

該array_divide函數返回兩個數組,一個包含鍵,另一個包含給定數組的值:

[$keys, $values] = array_divide(['name' => 'Desk']);// $keys: ['name']// $values: ['Desk']

array_dot()

該array_dot函數將多維數組展平為單級數組,使用“點”符號表示深度:

$array = ['products' => ['desk' => ['price' => 100]]];$flattened = array_dot($array);// ['products.desk.price' => 100]

array_except()

該array_except函數從數組中刪除給定的鍵/值對:

$array = ['name' => 'Desk', 'price' => 100];$filtered = array_except($array, ['price']);// ['name' => 'Desk']

array_first()

該array_first函數返回通過給定真值測試的數組的第一個元素:

$array = [100, 200, 300];$first = array_first($array, function ($value, $key) {return $value >= 150; });// 200

默認值也可以作為第三個參數傳遞給方法。如果沒有值通過真值測試,則返回此值:

$first = array_first($array, $callback, $default);

array_flatten()

該array_flatten函數將多維數組展平為單個數組:

$array = ['name' => 'Joe', 'languages' => ['PHP', 'Ruby']];$flattened = array_flatten($array);// ['Joe', 'PHP', 'Ruby']

array_forget()

該array_forget函數使用“點”表示法從深度嵌套的數組中刪除給定的鍵/值對:

$array = ['products' => ['desk' => ['price' => 100]]];array_forget($array, 'products.desk');// ['products' => []]

array_get()

該array_get函數使用“點”表示法從深層嵌套數組中檢索值:

$array = ['products' => ['desk' => ['price' => 100]]];$price = array_get($array, 'products.desk.price');// 100

該array_get函數還接受默認值,如果找不到特定鍵,將返回該值:

$discount = array_get($array, 'products.desk.discount', 0);// 0

array_has()

該array_has函數使用“點”表示法檢查數組中是否存在給定項目或項目:

$array = ['product' => ['name' => 'Desk', 'price' => 100]];$contains = array_has($array, 'product.name');// true$contains = array_has($array, ['product.price', 'product.discount']);// false

array_last()

該array_last函數返回通過給定真值測試的數組的最后一個元素:

$array = [100, 200, 300, 110];$last = array_last($array, function ($value, $key) {return $value >= 150; });// 300

可以將默認值作為方法的第三個參數傳遞。如果沒有值通過真值測試,則返回此值:

$last = array_last($array, $callback, $default);

array_only()

該array_only函數僅返回給定數組中指定的鍵/值對:

$array = ['name' => 'Desk', 'price' => 100, 'orders' => 10];$slice = array_only($array, ['name', 'price']);// ['name' => 'Desk', 'price' => 100]

array_pluck()

該array_pluck函數從數組中檢索給定鍵的所有值:

$array = [['developer' => ['id' => 1, 'name' => 'Taylor']],['developer' => ['id' => 2, 'name' => 'Abigail']], ];$names = array_pluck($array, 'developer.name');// ['Taylor', 'Abigail']

您還可以指定希望如何鍵入結果列表:

$names = array_pluck($array, 'developer.name', 'developer.id');// [1 => 'Taylor', 2 => 'Abigail']

array_prepend()

該array_prepend函數將項目推送到數組的開頭:

$array = ['one', 'two', 'three', 'four'];$array = array_prepend($array, 'zero');// ['zero', 'one', 'two', 'three', 'four']

如果需要,您可以指定應該用于該值的鍵:

$array = ['price' => 100];$array = array_prepend($array, 'Desk', 'name');// ['name' => 'Desk', 'price' => 100]

array_pull()

該array_pull函數返回并從數組中刪除鍵/值對:

$array = ['name' => 'Desk', 'price' => 100];$name = array_pull($array, 'name');// $name: Desk// $array: ['price' => 100]

可以將默認值作為方法的第三個參數傳遞。如果密鑰不存在,將返回此值:

$value = array_pull($array, $key, $default);

array_random()

該array_random函數從數組中返回一個隨機值:

$array = [1, 2, 3, 4, 5];$random = array_random($array);// 4 - (retrieved randomly)

您還可以指定要作為可選的第二個參數返回的項目數。請注意,即使只需要一個項目,提供此參數也會返回一個數組:

$items = array_random($array, 2);// [2, 5] - (retrieved randomly)

array_set()

該array_set函數使用“點”表示法在深層嵌套數組中設置一個值:

$array = ['products' => ['desk' => ['price' => 100]]];array_set($array, 'products.desk.price', 200);// ['products' => ['desk' => ['price' => 200]]]

array_sort()

該array_sort函數按其值對數組進行排序:

$array = ['Desk', 'Table', 'Chair'];$sorted = array_sort($array);// ['Chair', 'Desk', 'Table']

您也可以通過給定Closure的結果對數組進行排序:

$array = [['name' => 'Desk'],['name' => 'Table'],['name' => 'Chair'], ];$sorted = array_values(array_sort($array, function ($value) {return $value['name']; }));/*[['name' => 'Chair'],['name' => 'Desk'],['name' => 'Table'],] */

array_sort_recursive()

該array_sort_recursive函數使用函數遞歸排序數組sort:

$array = [['Roman', 'Taylor', 'Li'],['PHP', 'Ruby', 'JavaScript'], ];$sorted = array_sort_recursive($array);/*[['Li', 'Roman', 'Taylor'],['JavaScript', 'PHP', 'Ruby'],] */

array_where()

該array_where函數使用給定的Closure過濾數組:

$array = [100, '200', 300, '400', 500];$filtered = array_where($array, function ($value, $key) {return is_string($value); });// [1 => '200', 3 => '400']

array_wrap()

該array_wrap函數將給定值包裝在一個數組中。如果給定值已經是數組,則不會更改:

$string = 'Laravel';$array = array_wrap($string);// ['Laravel']

如果給定值為null,則返回一個空數組:

$nothing = null;$array = array_wrap($nothing);// []

data_fill()

該data_fill函數使用“點”表示法在嵌套數組或對象中設置缺失值:

$data = ['products' => ['desk' => ['price' => 100]]];data_fill($data, 'products.desk.price', 200);// ['products' => ['desk' => ['price' => 100]]]data_fill($data, 'products.desk.discount', 10);// ['products' => ['desk' => ['price' => 100, 'discount' => 10]]]

此函數還接受星號作為通配符,并相應地填充目標:

$data = ['products' => [['name' => 'Desk 1', 'price' => 100],['name' => 'Desk 2'],], ];data_fill($data, 'products.*.price', 200);/*['products' => [['name' => 'Desk 1', 'price' => 100],['name' => 'Desk 2', 'price' => 200],],] */

data_get()

該data_get函數使用“點”表示法從嵌套數組或對象中檢索值:

$data = ['products' => ['desk' => ['price' => 100]]];$price = data_get($data, 'products.desk.price');// 100

該data_get函數還接受默認值,如果找不到指定的鍵,將返回該值:

$discount = data_get($data, 'products.desk.discount', 0);// 0

data_set()

該data_set函數使用“點”表示法在嵌套數組或對象中設置值:

$data = ['products' => ['desk' => ['price' => 100]]];data_set($data, 'products.desk.price', 200);// ['products' => ['desk' => ['price' => 200]]]

此函數還接受通配符,并相應地在目標上設置值:

$data = ['products' => [['name' => 'Desk 1', 'price' => 100],['name' => 'Desk 2', 'price' => 150],], ];data_set($data, 'products.*.price', 200);/*['products' => [['name' => 'Desk 1', 'price' => 200],['name' => 'Desk 2', 'price' => 200],],] */

默認情況下,將覆蓋任何現有值。如果您只想設置一個值,如果它不存在,您可以false作為第三個參數傳遞:

$data = ['products' => ['desk' => ['price' => 100]]];data_set($data, 'products.desk.price', 200, false);// ['products' => ['desk' => ['price' => 100]]]

head()

該head函數返回給定數組中的第一個元素:

$array = [100, 200, 300];$first = head($array);// 100

last()

該last函數返回給定數組中的最后一個元素:

$array = [100, 200, 300];$last = last($array);// 300

all()

The?all?method returns the underlying array represented by the collection:

collect([1, 2, 3])->all();// [1, 2, 3]

average()

Alias for the?avg?method.

avg()

The?avg?method returns the?average value?of a given key:

$average = collect([['foo' => 10], ['foo' => 10], ['foo' => 20], ['foo' => 40]])->avg('foo');// 20$average = collect([1, 1, 2, 4])->avg();// 2

chunk()

The?chunk?method breaks the collection into multiple, smaller collections of a given size:

$collection = collect([1, 2, 3, 4, 5, 6, 7]);$chunks = $collection->chunk(4);$chunks->toArray();// [[1, 2, 3, 4], [5, 6, 7]]

This method is especially useful in?views?when working with a grid system such as?Bootstrap. Imagine you have a collection of?Eloquent?models you want to display in a grid:

@foreach ($products->chunk(3) as $chunk)<div class="row">@foreach ($chunk as $product)<div class="col-xs-4">{{ $product->name }}</div>@endforeach</div> @endforeach

collapse()

The?collapse?method collapses a collection of arrays into a single, flat collection:

$collection = collect([[1, 2, 3], [4, 5, 6], [7, 8, 9]]);$collapsed = $collection->collapse();$collapsed->all();// [1, 2, 3, 4, 5, 6, 7, 8, 9]

combine()

The?combine?method combines the keys of the collection with the values of another array or collection:

$collection = collect(['name', 'age']);$combined = $collection->combine(['George', 29]);$combined->all();// ['name' => 'George', 'age' => 29]

concat()

The?concat?method appends the given?array?or collection values onto the end of the collection:

$collection = collect(['John Doe']);$concatenated = $collection->concat(['Jane Doe'])->concat(['name' => 'Johnny Doe']);$concatenated->all();// ['John Doe', 'Jane Doe', 'Johnny Doe']

contains()

The?contains?method determines whether the collection contains a given item:

$collection = collect(['name' => 'Desk', 'price' => 100]);$collection->contains('Desk');// true$collection->contains('New York');// false

You may also pass a key / value pair to the?contains?method, which will determine if the given pair exists in the collection:

$collection = collect([['product' => 'Desk', 'price' => 200],['product' => 'Chair', 'price' => 100], ]);$collection->contains('product', 'Bookcase');// false

Finally, you may also pass a callback to the?contains?method to perform your own truth test:

$collection = collect([1, 2, 3, 4, 5]);$collection->contains(function ($value, $key) {return $value > 5; });// false

The?contains?method uses "loose" comparisons when checking item values, meaning a string with an integer value will be considered equal to an integer of the same value. Use the?containsStrict?method to filter using "strict" comparisons.

containsStrict()

This method has the same signature as the?contains?method; however, all values are compared using "strict" comparisons.

count()

The?count?method returns the total number of items in the collection:

$collection = collect([1, 2, 3, 4]);$collection->count();// 4

crossJoin()

The?crossJoin?method cross joins the collection's values among the given arrays or collections, returning a Cartesian product with all possible permutations:

$collection = collect([1, 2]);$matrix = $collection->crossJoin(['a', 'b']);$matrix->all();/*[[1, 'a'],[1, 'b'],[2, 'a'],[2, 'b'],] */$collection = collect([1, 2]);$matrix = $collection->crossJoin(['a', 'b'], ['I', 'II']);$matrix->all();/*[[1, 'a', 'I'],[1, 'a', 'II'],[1, 'b', 'I'],[1, 'b', 'II'],[2, 'a', 'I'],[2, 'a', 'II'],[2, 'b', 'I'],[2, 'b', 'II'],] */

dd()

The?dd?method dumps the collection's items and ends execution of the script:

$collection = collect(['John Doe', 'Jane Doe']);$collection->dd();/*Collection {#items: array:2 [0 => "John Doe"1 => "Jane Doe"]} */

If you do not want to stop executing the script, use the?dump?method instead.

diff()

The?diff?method compares the collection against another collection or a plain PHP?arraybased on its values. This method will return the values in the original collection that are not present in the given collection:

$collection = collect([1, 2, 3, 4, 5]);$diff = $collection->diff([2, 4, 6, 8]);$diff->all();// [1, 3, 5]

diffAssoc()

The?diffAssoc?method compares the collection against another collection or a plain PHP?array?based on its keys and values. This method will return the key / value pairs in the original collection that are not present in the given collection:

$collection = collect(['color' => 'orange','type' => 'fruit','remain' => 6 ]);$diff = $collection->diffAssoc(['color' => 'yellow','type' => 'fruit','remain' => 3,'used' => 6 ]);$diff->all();// ['color' => 'orange', 'remain' => 6]

diffKeys()

The?diffKeys?method compares the collection against another collection or a plain PHP?arraybased on its keys. This method will return the key / value pairs in the original collection that are not present in the given collection:

$collection = collect(['one' => 10,'two' => 20,'three' => 30,'four' => 40,'five' => 50, ]);$diff = $collection->diffKeys(['two' => 2,'four' => 4,'six' => 6,'eight' => 8, ]);$diff->all();// ['one' => 10, 'three' => 30, 'five' => 50]

dump()

The?dump?method dumps the collection's items:

$collection = collect(['John Doe', 'Jane Doe']);$collection->dump();/*Collection {#items: array:2 [0 => "John Doe"1 => "Jane Doe"]} */

If you want to stop executing the script after dumping the collection, use the?dd?method instead.

each()

The?each?method iterates over the items in the collection and passes each item to a callback:

$collection->each(function ($item, $key) {// });

If you would like to stop iterating through the items, you may return?false?from your callback:

$collection->each(function ($item, $key) {if (/* some condition */) {return false;} });

eachSpread()

The?eachSpread?method iterates over the collection's items, passing each nested item value into the given callback:

$collection = collect([['John Doe', 35], ['Jane Doe', 33]]);$collection->eachSpread(function ($name, $age) {// });

You may stop iterating through the items by returning?false?from the callback:

$collection->eachSpread(function ($name, $age) {return false; });

every()

The?every?method may be used to verify that all elements of a collection pass a given truth test:

collect([1, 2, 3, 4])->every(function ($value, $key) {return $value > 2; });// false

except()

The?except?method returns all items in the collection except for those with the specified keys:

$collection = collect(['product_id' => 1, 'price' => 100, 'discount' => false]);$filtered = $collection->except(['price', 'discount']);$filtered->all();// ['product_id' => 1]

For the inverse of?except, see the?only?method.

filter()

The?filter?method filters the collection using the given callback, keeping only those items that pass a given truth test:

$collection = collect([1, 2, 3, 4]);$filtered = $collection->filter(function ($value, $key) {return $value > 2; });$filtered->all();// [3, 4]

If no callback is supplied, all entries of the collection that are equivalent to?false?will be removed:

$collection = collect([1, 2, 3, null, false, '', 0, []]);$collection->filter()->all();// [1, 2, 3]

For the inverse of?filter, see the?reject?method.

first()

The?first?method returns the first element in the collection that passes a given truth test:

collect([1, 2, 3, 4])->first(function ($value, $key) {return $value > 2; });// 3

You may also call the?first?method with no arguments to get the first element in the collection. If the collection is empty,?null?is returned:

collect([1, 2, 3, 4])->first();// 1

firstWhere()

The?firstWhere?method returns the first element in the collection with the given key / value pair:

$collection = collect([['name' => 'Regena', 'age' => 12],['name' => 'Linda', 'age' => 14],['name' => 'Diego', 'age' => 23],['name' => 'Linda', 'age' => 84], ]);$collection->firstWhere('name', 'Linda');// ['name' => 'Linda', 'age' => 14]

You may also call the?firstWhere?method with an operator:

$collection->firstWhere('age', '>=', 18);// ['name' => 'Diego', 'age' => 23]

flatMap()

The?flatMap?method iterates through the collection and passes each value to the given callback. The callback is free to modify the item and return it, thus forming a new collection of modified items. Then, the array is flattened by a level:

$collection = collect([['name' => 'Sally'],['school' => 'Arkansas'],['age' => 28] ]);$flattened = $collection->flatMap(function ($values) {return array_map('strtoupper', $values); });$flattened->all();// ['name' => 'SALLY', 'school' => 'ARKANSAS', 'age' => '28'];

flatten()

The?flatten?method flattens a multi-dimensional collection into a single dimension:

$collection = collect(['name' => 'taylor', 'languages' => ['php', 'javascript']]);$flattened = $collection->flatten();$flattened->all();// ['taylor', 'php', 'javascript'];

You may optionally pass the function a "depth" argument:

$collection = collect(['Apple' => [['name' => 'iPhone 6S', 'brand' => 'Apple'],],'Samsung' => [['name' => 'Galaxy S7', 'brand' => 'Samsung']], ]);$products = $collection->flatten(1);$products->values()->all();/*[['name' => 'iPhone 6S', 'brand' => 'Apple'],['name' => 'Galaxy S7', 'brand' => 'Samsung'],] */

In this example, calling?flatten?without providing the depth would have also flattened the nested arrays, resulting in?['iPhone 6S',?'Apple',?'Galaxy S7',?'Samsung']. Providing a depth allows you to restrict the levels of nested arrays that will be flattened.

flip()

The?flip?method swaps the collection's keys with their corresponding values:

$collection = collect(['name' => 'taylor', 'framework' => 'laravel']);$flipped = $collection->flip();$flipped->all();// ['taylor' => 'name', 'laravel' => 'framework']

forget()

The?forget?method removes an item from the collection by its key:

$collection = collect(['name' => 'taylor', 'framework' => 'laravel']);$collection->forget('name');$collection->all();// ['framework' => 'laravel'] forget?does not return a new modified collection; it modifies the collection it is called on.

forPage()

The?forPage?method returns a new collection containing the items that would be present on a given page number. The method accepts the page number as its first argument and the number of items to show per page as its second argument:

$collection = collect([1, 2, 3, 4, 5, 6, 7, 8, 9]);$chunk = $collection->forPage(2, 3);$chunk->all();// [4, 5, 6]

get()

The?get?method returns the item at a given key. If the key does not exist,?null?is returned:

$collection = collect(['name' => 'taylor', 'framework' => 'laravel']);$value = $collection->get('name');// taylor

You may optionally pass a default value as the second argument:

$collection = collect(['name' => 'taylor', 'framework' => 'laravel']);$value = $collection->get('foo', 'default-value');// default-value

You may even pass a callback as the default value. The result of the callback will be returned if the specified key does not exist:

$collection->get('email', function () {return 'default-value'; });// default-value

groupBy()

The?groupBy?method groups the collection's items by a given key:

$collection = collect([['account_id' => 'account-x10', 'product' => 'Chair'],['account_id' => 'account-x10', 'product' => 'Bookcase'],['account_id' => 'account-x11', 'product' => 'Desk'], ]);$grouped = $collection->groupBy('account_id');$grouped->toArray();/*['account-x10' => [['account_id' => 'account-x10', 'product' => 'Chair'],['account_id' => 'account-x10', 'product' => 'Bookcase'],],'account-x11' => [['account_id' => 'account-x11', 'product' => 'Desk'],],] */

Instead of passing a string?key, you may pass a callback. The callback should return the value you wish to key the group by:

$grouped = $collection->groupBy(function ($item, $key) {return substr($item['account_id'], -3); });$grouped->toArray();/*['x10' => [['account_id' => 'account-x10', 'product' => 'Chair'],['account_id' => 'account-x10', 'product' => 'Bookcase'],],'x11' => [['account_id' => 'account-x11', 'product' => 'Desk'],],] */

Multiple grouping criteria may be passed as an array. Each array element will be applied to the corresponding level within a multi-dimensional array:

$data = new Collection([10 => ['user' => 1, 'skill' => 1, 'roles' => ['Role_1', 'Role_3']],20 => ['user' => 2, 'skill' => 1, 'roles' => ['Role_1', 'Role_2']],30 => ['user' => 3, 'skill' => 2, 'roles' => ['Role_1']],40 => ['user' => 4, 'skill' => 2, 'roles' => ['Role_2']], ]);$result = $data->groupBy(['skill',function ($item) {return $item['roles'];}, ], $preserveKeys = true);/* [1 => ['Role_1' => [10 => ['user' => 1, 'skill' => 1, 'roles' => ['Role_1', 'Role_3']],20 => ['user' => 2, 'skill' => 1, 'roles' => ['Role_1', 'Role_2']],],'Role_2' => [20 => ['user' => 2, 'skill' => 1, 'roles' => ['Role_1', 'Role_2']],],'Role_3' => [10 => ['user' => 1, 'skill' => 1, 'roles' => ['Role_1', 'Role_3']],],],2 => ['Role_1' => [30 => ['user' => 3, 'skill' => 2, 'roles' => ['Role_1']],],'Role_2' => [40 => ['user' => 4, 'skill' => 2, 'roles' => ['Role_2']],],], ]; */

has()

The?has?method determines if a given key exists in the collection:

$collection = collect(['account_id' => 1, 'product' => 'Desk']);$collection->has('product');// true

implode()

The?implode?method joins the items in a collection. Its arguments depend on the type of items in the collection. If the collection contains arrays or objects, you should pass the key of the attributes you wish to join, and the "glue" string you wish to place between the values:

$collection = collect([['account_id' => 1, 'product' => 'Desk'],['account_id' => 2, 'product' => 'Chair'], ]);$collection->implode('product', ', ');// Desk, Chair

If the collection contains simple strings or numeric values, pass the "glue" as the only argument to the method:

collect([1, 2, 3, 4, 5])->implode('-');// '1-2-3-4-5'

intersect()

The?intersect?method removes any values from the original collection that are not present in the given?array?or collection. The resulting collection will preserve the original collection's keys:

$collection = collect(['Desk', 'Sofa', 'Chair']);$intersect = $collection->intersect(['Desk', 'Chair', 'Bookcase']);$intersect->all();// [0 => 'Desk', 2 => 'Chair']

intersectByKeys()

The?intersectByKeys?method removes any keys from the original collection that are not present in the given?array?or collection:

$collection = collect(['serial' => 'UX301', 'type' => 'screen', 'year' => 2009 ]);$intersect = $collection->intersectByKeys(['reference' => 'UX404', 'type' => 'tab', 'year' => 2011 ]);$intersect->all();// ['type' => 'screen', 'year' => 2009]

isEmpty()

The?isEmpty?method returns?true?if the collection is empty; otherwise,?false?is returned:

collect([])->isEmpty();// true

isNotEmpty()

The?isNotEmpty?method returns?true?if the collection is not empty; otherwise,?false?is returned:

collect([])->isNotEmpty();// false

keyBy()

The?keyBy?method keys the collection by the given key. If multiple items have the same key, only the last one will appear in the new collection:

$collection = collect([['product_id' => 'prod-100', 'name' => 'Desk'],['product_id' => 'prod-200', 'name' => 'Chair'], ]);$keyed = $collection->keyBy('product_id');$keyed->all();/*['prod-100' => ['product_id' => 'prod-100', 'name' => 'Desk'],'prod-200' => ['product_id' => 'prod-200', 'name' => 'Chair'],] */

You may also pass a callback to the method. The callback should return the value to key the collection by:

$keyed = $collection->keyBy(function ($item) {return strtoupper($item['product_id']); });$keyed->all();/*['PROD-100' => ['product_id' => 'prod-100', 'name' => 'Desk'],'PROD-200' => ['product_id' => 'prod-200', 'name' => 'Chair'],] */

keys()

The?keys?method returns all of the collection's keys:

$collection = collect(['prod-100' => ['product_id' => 'prod-100', 'name' => 'Desk'],'prod-200' => ['product_id' => 'prod-200', 'name' => 'Chair'], ]);$keys = $collection->keys();$keys->all();// ['prod-100', 'prod-200']

last()

The?last?method returns the last element in the collection that passes a given truth test:

collect([1, 2, 3, 4])->last(function ($value, $key) {return $value < 3; });// 2

You may also call the?last?method with no arguments to get the last element in the collection. If the collection is empty,?null?is returned:

collect([1, 2, 3, 4])->last();// 4

macro()

The static?macro?method allows you to add methods to the?Collection?class at run time. Refer to the documentation on?extending collections?for more information.

make()

The static?make?method creates a new collection instance. See the?Creating Collectionssection.

map()

The?map?method iterates through the collection and passes each value to the given callback. The callback is free to modify the item and return it, thus forming a new collection of modified items:

$collection = collect([1, 2, 3, 4, 5]);$multiplied = $collection->map(function ($item, $key) {return $item * 2; });$multiplied->all();// [2, 4, 6, 8, 10] map?returns a new collection instance; it does not modify the collection it is called on. If you want to transform the original collection, use the?transform?method.

mapInto()

The?mapInto()?method iterates over the collection, creating a new instance of the given class by passing the value into the constructor:

class Currency {/*** Create a new currency instance.** @param string $code* @return void*/function __construct(string $code){$this->code = $code;} }$collection = collect(['USD', 'EUR', 'GBP']);$currencies = $collection->mapInto(Currency::class);$currencies->all();// [Currency('USD'), Currency('EUR'), Currency('GBP')]

mapSpread()

The?mapSpread?method iterates over the collection's items, passing each nested item value into the given callback. The callback is free to modify the item and return it, thus forming a new collection of modified items:

$collection = collect([0, 1, 2, 3, 4, 5, 6, 7, 8, 9]);$chunks = $collection->chunk(2);$sequence = $chunks->mapSpread(function ($odd, $even) {return $odd + $even; });$sequence->all();// [1, 5, 9, 13, 17]

mapToGroups()

The?mapToGroups?method groups the collection's items by the given callback. The callback should return an associative array containing a single key / value pair, thus forming a new collection of grouped values:

$collection = collect([['name' => 'John Doe','department' => 'Sales',],['name' => 'Jane Doe','department' => 'Sales',],['name' => 'Johnny Doe','department' => 'Marketing',] ]);$grouped = $collection->mapToGroups(function ($item, $key) {return [$item['department'] => $item['name']]; });$grouped->toArray();/*['Sales' => ['John Doe', 'Jane Doe'],'Marketing' => ['Johhny Doe'],] */$grouped->get('Sales')->all();// ['John Doe', 'Jane Doe']

mapWithKeys()

The?mapWithKeys?method iterates through the collection and passes each value to the given callback. The callback should return an associative array containing a single key / value pair:

$collection = collect([['name' => 'John','department' => 'Sales','email' => 'john@example.com'],['name' => 'Jane','department' => 'Marketing','email' => 'jane@example.com'] ]);$keyed = $collection->mapWithKeys(function ($item) {return [$item['email'] => $item['name']]; });$keyed->all();/*['john@example.com' => 'John','jane@example.com' => 'Jane',] */

max()

The?max?method returns the maximum value of a given key:

$max = collect([['foo' => 10], ['foo' => 20]])->max('foo');// 20$max = collect([1, 2, 3, 4, 5])->max();// 5

median()

The?median?method returns the?median value?of a given key:

$median = collect([['foo' => 10], ['foo' => 10], ['foo' => 20], ['foo' => 40]])->median('foo');// 15$median = collect([1, 1, 2, 4])->median();// 1.5

merge()

The?merge?method merges the given array or collection with the original collection. If a string key in the given items matches a string key in the original collection, the given items's value will overwrite the value in the original collection:

$collection = collect(['product_id' => 1, 'price' => 100]);$merged = $collection->merge(['price' => 200, 'discount' => false]);$merged->all();// ['product_id' => 1, 'price' => 200, 'discount' => false]

If the given items's keys are numeric, the values will be appended to the end of the collection:

$collection = collect(['Desk', 'Chair']);$merged = $collection->merge(['Bookcase', 'Door']);$merged->all();// ['Desk', 'Chair', 'Bookcase', 'Door']

min()

The?min?method returns the minimum value of a given key:

$min = collect([['foo' => 10], ['foo' => 20]])->min('foo');// 10$min = collect([1, 2, 3, 4, 5])->min();// 1

mode()

The?mode?method returns the?mode value?of a given key:

$mode = collect([['foo' => 10], ['foo' => 10], ['foo' => 20], ['foo' => 40]])->mode('foo');// [10]$mode = collect([1, 1, 2, 4])->mode();// [1]

nth()

The?nth?method creates a new collection consisting of every n-th element:

$collection = collect(['a', 'b', 'c', 'd', 'e', 'f']);$collection->nth(4);// ['a', 'e']

You may optionally pass an offset as the second argument:

$collection->nth(4, 1);// ['b', 'f']

only()

The?only?method returns the items in the collection with the specified keys:

$collection = collect(['product_id' => 1, 'name' => 'Desk', 'price' => 100, 'discount' => false]);$filtered = $collection->only(['product_id', 'name']);$filtered->all();// ['product_id' => 1, 'name' => 'Desk']

For the inverse of?only, see the?except?method.

pad()

The?pad?method will fill the array with the given value until the array reaches the specified size. This method behaves like the?array_pad?PHP function.

To pad to the left, you should specify a negative size. No padding will take place if the absolute value of the given size is less than or equal to the length of the array:

$collection = collect(['A', 'B', 'C']);$filtered = $collection->pad(5, 0);$filtered->all();// ['A', 'B', 'C', 0, 0]$filtered = $collection->pad(-5, 0);$filtered->all();// [0, 0, 'A', 'B', 'C']

partition()

The?partition?method may be combined with the?list?PHP function to separate elements that pass a given truth test from those that do not:

$collection = collect([1, 2, 3, 4, 5, 6]);list($underThree, $aboveThree) = $collection->partition(function ($i) {return $i < 3; });$underThree->all();// [1, 2]$aboveThree->all();// [3, 4, 5, 6]

pipe()

The?pipe?method passes the collection to the given callback and returns the result:

$collection = collect([1, 2, 3]);$piped = $collection->pipe(function ($collection) {return $collection->sum(); });// 6

pluck()

The?pluck?method retrieves all of the values for a given key:

$collection = collect([['product_id' => 'prod-100', 'name' => 'Desk'],['product_id' => 'prod-200', 'name' => 'Chair'], ]);$plucked = $collection->pluck('name');$plucked->all();// ['Desk', 'Chair']

You may also specify how you wish the resulting collection to be keyed:

$plucked = $collection->pluck('name', 'product_id');$plucked->all();// ['prod-100' => 'Desk', 'prod-200' => 'Chair']

If duplicate keys exist, the last matching element will be inserted into the plucked collection:

$collection = collect([['brand' => 'Tesla', 'color' => 'red'],['brand' => 'Pagani', 'color' => 'white'],['brand' => 'Tesla', 'color' => 'black'],['brand' => 'Pagani', 'color' => 'orange'], ]);$plucked = $collection->pluck('color', 'brand');$plucked->all();// ['Tesla' => 'black', 'Pagani' => 'orange']

pop()

The?pop?method removes and returns the last item from the collection:

$collection = collect([1, 2, 3, 4, 5]);$collection->pop();// 5$collection->all();// [1, 2, 3, 4]

prepend()

The?prepend?method adds an item to the beginning of the collection:

$collection = collect([1, 2, 3, 4, 5]);$collection->prepend(0);$collection->all();// [0, 1, 2, 3, 4, 5]

You may also pass a second argument to set the key of the prepended item:

$collection = collect(['one' => 1, 'two' => 2]);$collection->prepend(0, 'zero');$collection->all();// ['zero' => 0, 'one' => 1, 'two' => 2]

pull()

The?pull?method removes and returns an item from the collection by its key:

$collection = collect(['product_id' => 'prod-100', 'name' => 'Desk']);$collection->pull('name');// 'Desk'$collection->all();// ['product_id' => 'prod-100']

push()

The?push?method appends an item to the end of the collection:

$collection = collect([1, 2, 3, 4]);$collection->push(5);$collection->all();// [1, 2, 3, 4, 5]

put()

The?put?method sets the given key and value in the collection:

$collection = collect(['product_id' => 1, 'name' => 'Desk']);$collection->put('price', 100);$collection->all();// ['product_id' => 1, 'name' => 'Desk', 'price' => 100]

random()

The?random?method returns a random item from the collection:

$collection = collect([1, 2, 3, 4, 5]);$collection->random();// 4 - (retrieved randomly)

You may optionally pass an integer to?random?to specify how many items you would like to randomly retrieve. A collection of items is always returned when explicitly passing the number of items you wish to receive:

$random = $collection->random(3);$random->all();// [2, 4, 5] - (retrieved randomly)

If the Collection has fewer items than requested, the method will throw an?InvalidArgumentException.

reduce()

The?reduce?method reduces the collection to a single value, passing the result of each iteration into the subsequent iteration:

$collection = collect([1, 2, 3]);$total = $collection->reduce(function ($carry, $item) {return $carry + $item; });// 6

The value for?$carry?on the first iteration is?null; however, you may specify its initial value by passing a second argument to?reduce:

$collection->reduce(function ($carry, $item) {return $carry + $item; }, 4);// 10

reject()

The?reject?method filters the collection using the given callback. The callback should return?true?if the item should be removed from the resulting collection:

$collection = collect([1, 2, 3, 4]);$filtered = $collection->reject(function ($value, $key) {return $value > 2; });$filtered->all();// [1, 2]

For the inverse of the?reject?method, see the?filter?method.

reverse()

The?reverse?method reverses the order of the collection's items, preserving the original keys:

$collection = collect(['a', 'b', 'c', 'd', 'e']);$reversed = $collection->reverse();$reversed->all();/*[4 => 'e',3 => 'd',2 => 'c',1 => 'b',0 => 'a',] */

search()

The?search?method searches the collection for the given value and returns its key if found. If the item is not found,?false?is returned.

$collection = collect([2, 4, 6, 8]);$collection->search(4);// 1

The search is done using a "loose" comparison, meaning a string with an integer value will be considered equal to an integer of the same value. To use "strict" comparison, pass?true?as the second argument to the method:

$collection->search('4', true);// false

Alternatively, you may pass in your own callback to search for the first item that passes your truth test:

$collection->search(function ($item, $key) {return $item > 5; });// 2

shift()

The?shift?method removes and returns the first item from the collection:

$collection = collect([1, 2, 3, 4, 5]);$collection->shift();// 1$collection->all();// [2, 3, 4, 5]

shuffle()

The?shuffle?method randomly shuffles the items in the collection:

$collection = collect([1, 2, 3, 4, 5]);$shuffled = $collection->shuffle();$shuffled->all();// [3, 2, 5, 1, 4] - (generated randomly)

slice()

The?slice?method returns a slice of the collection starting at the given index:

$collection = collect([1, 2, 3, 4, 5, 6, 7, 8, 9, 10]);$slice = $collection->slice(4);$slice->all();// [5, 6, 7, 8, 9, 10]

If you would like to limit the size of the returned slice, pass the desired size as the second argument to the method:

$slice = $collection->slice(4, 2);$slice->all();// [5, 6]

The returned slice will preserve keys by default. If you do not wish to preserve the original keys, you can use the?values?method to reindex them.

sort()

The?sort?method sorts the collection. The sorted collection keeps the original array keys, so in this example we'll use the?values?method to reset the keys to consecutively numbered indexes:

$collection = collect([5, 3, 1, 2, 4]);$sorted = $collection->sort();$sorted->values()->all();// [1, 2, 3, 4, 5]

If your sorting needs are more advanced, you may pass a callback to?sort?with your own algorithm. Refer to the PHP documentation on?uasort, which is what the collection's?sortmethod calls under the hood.

sortBy?and?sortByDesc?methods.

sortBy()

The?sortBy?method sorts the collection by the given key. The sorted collection keeps the original array keys, so in this example we'll use the?values?method to reset the keys to consecutively numbered indexes:

$collection = collect([['name' => 'Desk', 'price' => 200],['name' => 'Chair', 'price' => 100],['name' => 'Bookcase', 'price' => 150], ]);$sorted = $collection->sortBy('price');$sorted->values()->all();/*[['name' => 'Chair', 'price' => 100],['name' => 'Bookcase', 'price' => 150],['name' => 'Desk', 'price' => 200],] */

You can also pass your own callback to determine how to sort the collection values:

$collection = collect([['name' => 'Desk', 'colors' => ['Black', 'Mahogany']],['name' => 'Chair', 'colors' => ['Black']],['name' => 'Bookcase', 'colors' => ['Red', 'Beige', 'Brown']], ]);$sorted = $collection->sortBy(function ($product, $key) {return count($product['colors']); });$sorted->values()->all();/*[['name' => 'Chair', 'colors' => ['Black']],['name' => 'Desk', 'colors' => ['Black', 'Mahogany']],['name' => 'Bookcase', 'colors' => ['Red', 'Beige', 'Brown']],] */

sortByDesc()

This method has the same signature as the?sortBy?method, but will sort the collection in the opposite order.

sortKeys()

The?sortKeys?method sorts the collection by the keys of the underlying associative array:

$collection = collect(['id' => 22345,'first' => 'John','last' => 'Doe', ]);$sorted = $collection->sortKeys();$sorted->all();/*['first' => 'John','id' => 22345,'last' => 'Doe',] */

sortKeysDesc()

This method has the same signature as the?sortKeys?method, but will sort the collection in the opposite order.

splice()

The?splice?method removes and returns a slice of items starting at the specified index:

$collection = collect([1, 2, 3, 4, 5]);$chunk = $collection->splice(2);$chunk->all();// [3, 4, 5]$collection->all();// [1, 2]

You may pass a second argument to limit the size of the resulting chunk:

$collection = collect([1, 2, 3, 4, 5]);$chunk = $collection->splice(2, 1);$chunk->all();// [3]$collection->all();// [1, 2, 4, 5]

In addition, you can pass a third argument containing the new items to replace the items removed from the collection:

$collection = collect([1, 2, 3, 4, 5]);$chunk = $collection->splice(2, 1, [10, 11]);$chunk->all();// [3]$collection->all();// [1, 2, 10, 11, 4, 5]

split()

The?split?method breaks a collection into the given number of groups:

$collection = collect([1, 2, 3, 4, 5]);$groups = $collection->split(3);$groups->toArray();// [[1, 2], [3, 4], [5]]

sum()

The?sum?method returns the sum of all items in the collection:

collect([1, 2, 3, 4, 5])->sum();// 15

If the collection contains nested arrays or objects, you should pass a key to use for determining which values to sum:

$collection = collect([['name' => 'JavaScript: The Good Parts', 'pages' => 176],['name' => 'JavaScript: The Definitive Guide', 'pages' => 1096], ]);$collection->sum('pages');// 1272

In addition, you may pass your own callback to determine which values of the collection to sum:

$collection = collect([['name' => 'Chair', 'colors' => ['Black']],['name' => 'Desk', 'colors' => ['Black', 'Mahogany']],['name' => 'Bookcase', 'colors' => ['Red', 'Beige', 'Brown']], ]);$collection->sum(function ($product) {return count($product['colors']); });// 6

take()

The?take?method returns a new collection with the specified number of items:

$collection = collect([0, 1, 2, 3, 4, 5]);$chunk = $collection->take(3);$chunk->all();// [0, 1, 2]

You may also pass a negative integer to take the specified amount of items from the end of the collection:

$collection = collect([0, 1, 2, 3, 4, 5]);$chunk = $collection->take(-2);$chunk->all();// [4, 5]

tap()

The?tap?method passes the collection to the given callback, allowing you to "tap" into the collection at a specific point and do something with the items while not affecting the collection itself:

collect([2, 4, 3, 1, 5])->sort()->tap(function ($collection) {Log::debug('Values after sorting', $collection->values()->toArray());})->shift();// 1

times()

The static?times?method creates a new collection by invoking the callback a given amount of times:

$collection = Collection::times(10, function ($number) {return $number * 9; });$collection->all();// [9, 18, 27, 36, 45, 54, 63, 72, 81, 90]

This method can be useful when combined with factories to create?Eloquent?models:

$categories = Collection::times(3, function ($number) {return factory(Category::class)->create(['name' => 'Category #'.$number]); });$categories->all();/*[['id' => 1, 'name' => 'Category #1'],['id' => 2, 'name' => 'Category #2'],['id' => 3, 'name' => 'Category #3'],] */

toArray()

The?toArray?method converts the collection into a plain PHP?array. If the collection's values are?Eloquent?models, the models will also be converted to arrays:

$collection = collect(['name' => 'Desk', 'price' => 200]);$collection->toArray();/*[['name' => 'Desk', 'price' => 200],] */ toArray?also converts all of the collection's nested objects to an array. If you want to get the raw underlying array, use the?all?method instead.

toJson()

The?toJson?method converts the collection into a JSON serialized string:

$collection = collect(['name' => 'Desk', 'price' => 200]);$collection->toJson();// '{"name":"Desk", "price":200}'

transform()

The?transform?method iterates over the collection and calls the given callback with each item in the collection. The items in the collection will be replaced by the values returned by the callback:

$collection = collect([1, 2, 3, 4, 5]);$collection->transform(function ($item, $key) {return $item * 2; });$collection->all();// [2, 4, 6, 8, 10] transform?modifies the collection itself. If you wish to create a new collection instead, use the?map?method.

union()

The?union?method adds the given array to the collection. If the given array contains keys that are already in the original collection, the original collection's values will be preferred:

$collection = collect([1 => ['a'], 2 => ['b']]);$union = $collection->union([3 => ['c'], 1 => ['b']]);$union->all();// [1 => ['a'], 2 => ['b'], 3 => ['c']]

unique()

The?unique?method returns all of the unique items in the collection. The returned collection keeps the original array keys, so in this example we'll use the?values?method to reset the keys to consecutively numbered indexes:

$collection = collect([1, 1, 2, 2, 3, 4, 2]);$unique = $collection->unique();$unique->values()->all();// [1, 2, 3, 4]

When dealing with nested arrays or objects, you may specify the key used to determine uniqueness:

$collection = collect([['name' => 'iPhone 6', 'brand' => 'Apple', 'type' => 'phone'],['name' => 'iPhone 5', 'brand' => 'Apple', 'type' => 'phone'],['name' => 'Apple Watch', 'brand' => 'Apple', 'type' => 'watch'],['name' => 'Galaxy S6', 'brand' => 'Samsung', 'type' => 'phone'],['name' => 'Galaxy Gear', 'brand' => 'Samsung', 'type' => 'watch'], ]);$unique = $collection->unique('brand');$unique->values()->all();/*[['name' => 'iPhone 6', 'brand' => 'Apple', 'type' => 'phone'],['name' => 'Galaxy S6', 'brand' => 'Samsung', 'type' => 'phone'],] */

You may also pass your own callback to determine item uniqueness:

$unique = $collection->unique(function ($item) {return $item['brand'].$item['type']; });$unique->values()->all();/*[['name' => 'iPhone 6', 'brand' => 'Apple', 'type' => 'phone'],['name' => 'Apple Watch', 'brand' => 'Apple', 'type' => 'watch'],['name' => 'Galaxy S6', 'brand' => 'Samsung', 'type' => 'phone'],['name' => 'Galaxy Gear', 'brand' => 'Samsung', 'type' => 'watch'],] */

The?unique?method uses "loose" comparisons when checking item values, meaning a string with an integer value will be considered equal to an integer of the same value. Use the?uniqueStrict?method to filter using "strict" comparisons.

uniqueStrict()

This method has the same signature as the?unique?method; however, all values are compared using "strict" comparisons.

unless()

The?unless?method will execute the given callback unless the first argument given to the method evaluates to?true:

$collection = collect([1, 2, 3]);$collection->unless(true, function ($collection) {return $collection->push(4); });$collection->unless(false, function ($collection) {return $collection->push(5); });$collection->all();// [1, 2, 3, 5]

For the inverse of?unless, see the?when?method.

unwrap()

The static?unwrap?method returns the collection's underlying items from the given value when applicable:

Collection::unwrap(collect('John Doe'));// ['John Doe']Collection::unwrap(['John Doe']);// ['John Doe']Collection::unwrap('John Doe');// 'John Doe'

values()

The?values?method returns a new collection with the keys reset to consecutive integers:

$collection = collect([10 => ['product' => 'Desk', 'price' => 200],11 => ['product' => 'Desk', 'price' => 200] ]);$values = $collection->values();$values->all();/*[0 => ['product' => 'Desk', 'price' => 200],1 => ['product' => 'Desk', 'price' => 200],] */

when()

The?when?method will execute the given callback when the first argument given to the method evaluates to?true:

$collection = collect([1, 2, 3]);$collection->when(true, function ($collection) {return $collection->push(4); });$collection->when(false, function ($collection) {return $collection->push(5); });$collection->all();// [1, 2, 3, 4]

For the inverse of?when, see the?unless?method.

where()

The?where?method filters the collection by a given key / value pair:

$collection = collect([['product' => 'Desk', 'price' => 200],['product' => 'Chair', 'price' => 100],['product' => 'Bookcase', 'price' => 150],['product' => 'Door', 'price' => 100], ]);$filtered = $collection->where('price', 100);$filtered->all();/*[['product' => 'Chair', 'price' => 100],['product' => 'Door', 'price' => 100],] */

The?where?method uses "loose" comparisons when checking item values, meaning a string with an integer value will be considered equal to an integer of the same value. Use the?whereStrict?method to filter using "strict" comparisons.

whereStrict()

This method has the same signature as the?where?method; however, all values are compared using "strict" comparisons.

whereIn()

The?whereIn?method filters the collection by a given key / value contained within the given array:

$collection = collect([['product' => 'Desk', 'price' => 200],['product' => 'Chair', 'price' => 100],['product' => 'Bookcase', 'price' => 150],['product' => 'Door', 'price' => 100], ]);$filtered = $collection->whereIn('price', [150, 200]);$filtered->all();/*[['product' => 'Bookcase', 'price' => 150],['product' => 'Desk', 'price' => 200],] */

The?whereIn?method uses "loose" comparisons when checking item values, meaning a string with an integer value will be considered equal to an integer of the same value. Use the?whereInStrict?method to filter using "strict" comparisons.

whereInStrict()

This method has the same signature as the?whereIn?method; however, all values are compared using "strict" comparisons.

whereInstanceOf()

The?whereInstanceOf?method filters the collection by a given class type:

$collection = collect([new User,new User,new Post, ]);return $collection->whereInstanceOf(User::class);

whereNotIn()

The?whereNotIn?method filters the collection by a given key / value not contained within the given array:

$collection = collect([['product' => 'Desk', 'price' => 200],['product' => 'Chair', 'price' => 100],['product' => 'Bookcase', 'price' => 150],['product' => 'Door', 'price' => 100], ]);$filtered = $collection->whereNotIn('price', [150, 200]);$filtered->all();/*[['product' => 'Chair', 'price' => 100],['product' => 'Door', 'price' => 100],] */

The?whereNotIn?method uses "loose" comparisons when checking item values, meaning a string with an integer value will be considered equal to an integer of the same value. Use the?whereNotInStrict?method to filter using "strict" comparisons.

whereNotInStrict()

This method has the same signature as the?whereNotIn?method; however, all values are compared using "strict" comparisons.

wrap()

The static?wrap?method wraps the given value in a collection when applicable:

$collection = Collection::wrap('John Doe');$collection->all();// ['John Doe']$collection = Collection::wrap(['John Doe']);$collection->all();// ['John Doe']$collection = Collection::wrap(collect('John Doe'));$collection->all();// ['John Doe']

zip()

The?zip?method merges together the values of the given array with the values of the original collection at the corresponding index:

$collection = collect(['Chair', 'Desk']);$zipped = $collection->zip([100, 200]);$zipped->all();// [['Chair', 100], ['Desk', 200]]

Higher Order Messages

Collections also provide support for "higher order messages", which are short-cuts for performing common actions on collections. The collection methods that provide higher order messages are:?average,?avg,?contains,?each,?every,?filter,?first,?flatMap,?groupBy,?keyBy,?map,?max,?min,?partition,?reject,?sortBy,?sortByDesc,?sum, and?unique.

Each higher order message can be accessed as a dynamic property on a collection instance. For instance, let's use the?each?higher order message to call a method on each object within a collection:

$users = User::where('votes', '>', 500)->get();$users->each->markAsVip();

Likewise, we can use the?sum?higher order message to gather the total number of "votes" for a collection of users:

$users = User::where('group', 'Development')->get();return $users->sum->votes;

orm get()查詢數據集合轉為數組

$data = DB::table('test')->get()->map(function ($value) { return (array)$value; })->toArray();

總結

以上是生活随笔為你收集整理的Laravel Lumen 数组操作的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。

无码一区二区三区在线观看 | 少女韩国电视剧在线观看完整 | 波多野结衣高清一区二区三区 | 无码人妻丰满熟妇区毛片18 | 99久久精品国产一区二区蜜芽 | 午夜福利试看120秒体验区 | 亚洲中文字幕av在天堂 | 国产精品久免费的黄网站 | 精品无码一区二区三区的天堂 | 在线精品国产一区二区三区 | 无码av中文字幕免费放 | 亚洲七七久久桃花影院 | 巨爆乳无码视频在线观看 | 无遮挡啪啪摇乳动态图 | 亚洲综合久久一区二区 | 夫妻免费无码v看片 | 狠狠色噜噜狠狠狠7777奇米 | 日韩亚洲欧美精品综合 | 18禁止看的免费污网站 | 久久99国产综合精品 | 中文字幕乱码人妻无码久久 | 无码午夜成人1000部免费视频 | 中文字幕无码人妻少妇免费 | 日日干夜夜干 | 久久久久人妻一区精品色欧美 | 亚洲色大成网站www国产 | 噜噜噜亚洲色成人网站 | 又湿又紧又大又爽a视频国产 | 久久国产精品_国产精品 | 成人免费视频一区二区 | 在线亚洲高清揄拍自拍一品区 | 国产特级毛片aaaaaaa高清 | 97精品人妻一区二区三区香蕉 | 无码一区二区三区在线 | 激情爆乳一区二区三区 | 7777奇米四色成人眼影 | 综合人妻久久一区二区精品 | 国产成人精品三级麻豆 | 狠狠色丁香久久婷婷综合五月 | 强辱丰满人妻hd中文字幕 | 亚洲理论电影在线观看 | 亚洲伊人久久精品影院 | 成年美女黄网站色大免费视频 | 国产人成高清在线视频99最全资源 | 久久人人爽人人人人片 | 中文字幕乱码人妻无码久久 | 日本熟妇乱子伦xxxx | 久久久婷婷五月亚洲97号色 | 国产在线无码精品电影网 | 国产又粗又硬又大爽黄老大爷视 | 无人区乱码一区二区三区 | 国产亚洲精品久久久久久久久动漫 | 成人亚洲精品久久久久 | 久久亚洲国产成人精品性色 | 全黄性性激高免费视频 | 亚洲人成影院在线观看 | 国产精品美女久久久久av爽李琼 | 亚洲一区二区三区国产精华液 | 学生妹亚洲一区二区 | 成年女人永久免费看片 | 国产在热线精品视频 | 性色av无码免费一区二区三区 | 国产午夜精品一区二区三区嫩草 | 亚洲中文字幕久久无码 | 午夜熟女插插xx免费视频 | 国产成人精品无码播放 | 55夜色66夜色国产精品视频 | 中文字幕无码人妻少妇免费 | 九九久久精品国产免费看小说 | 精品无人区无码乱码毛片国产 | 高清无码午夜福利视频 | 一本大道久久东京热无码av | aa片在线观看视频在线播放 | 国产亲子乱弄免费视频 | 久久亚洲中文字幕无码 | 国产精品无码久久av | 99久久无码一区人妻 | 日欧一片内射va在线影院 | 99久久亚洲精品无码毛片 | 国产小呦泬泬99精品 | 国产又粗又硬又大爽黄老大爷视 | 欧美日本免费一区二区三区 | 免费视频欧美无人区码 | 日本精品少妇一区二区三区 | 亚洲国产精品美女久久久久 | 97色伦图片97综合影院 | 狠狠躁日日躁夜夜躁2020 | 在线成人www免费观看视频 | 伊在人天堂亚洲香蕉精品区 | 国产av人人夜夜澡人人爽麻豆 | 日本熟妇大屁股人妻 | 人妻少妇被猛烈进入中文字幕 | 亚洲第一无码av无码专区 | 色偷偷人人澡人人爽人人模 | 无码人妻出轨黑人中文字幕 | 又色又爽又黄的美女裸体网站 | 欧美黑人巨大xxxxx | 久青草影院在线观看国产 | 一二三四社区在线中文视频 | 又大又黄又粗又爽的免费视频 | 男人的天堂2018无码 | 欧美xxxx黑人又粗又长 | 国产香蕉尹人综合在线观看 | 欧美日本日韩 | 无码国内精品人妻少妇 | 精品一区二区三区无码免费视频 | 欧美自拍另类欧美综合图片区 | 国产精品嫩草久久久久 | 一本久久a久久精品亚洲 | 精品久久久久久亚洲精品 | 精品无人区无码乱码毛片国产 | 宝宝好涨水快流出来免费视频 | 亚洲一区av无码专区在线观看 | 99久久婷婷国产综合精品青草免费 | 欧美性生交xxxxx久久久 | 初尝人妻少妇中文字幕 | 精品少妇爆乳无码av无码专区 | 野狼第一精品社区 | 国产精品免费大片 | 久久精品人人做人人综合试看 | 国产在线精品一区二区高清不卡 | 国产精品久久久久久亚洲毛片 | 国产莉萝无码av在线播放 | 熟妇女人妻丰满少妇中文字幕 | 18精品久久久无码午夜福利 | 国产精品人妻一区二区三区四 | 国产xxx69麻豆国语对白 | 国产明星裸体无码xxxx视频 | 老熟妇仑乱视频一区二区 | 中文字幕无码热在线视频 | 成人欧美一区二区三区黑人免费 | 国产电影无码午夜在线播放 | 一区二区传媒有限公司 | 国产精品久久久久9999小说 | a在线观看免费网站大全 | 色婷婷av一区二区三区之红樱桃 | 在线观看欧美一区二区三区 | 永久免费观看国产裸体美女 | 精品aⅴ一区二区三区 | 麻豆精产国品 | 久久久久成人精品免费播放动漫 | 亚洲自偷精品视频自拍 | 亚洲成av人片天堂网无码】 | 色 综合 欧美 亚洲 国产 | 欧美性猛交内射兽交老熟妇 | 色五月五月丁香亚洲综合网 | 亚洲精品久久久久avwww潮水 | 草草网站影院白丝内射 | 男女下面进入的视频免费午夜 | 伊人久久婷婷五月综合97色 | 荫蒂添的好舒服视频囗交 | 国产精品福利视频导航 | 无码国产色欲xxxxx视频 | 久久综合香蕉国产蜜臀av | 帮老师解开蕾丝奶罩吸乳网站 | 99久久精品日本一区二区免费 | 亚洲va中文字幕无码久久不卡 | 性色欲网站人妻丰满中文久久不卡 | 精品偷自拍另类在线观看 | 99视频精品全部免费免费观看 | 国内精品久久久久久中文字幕 | 纯爱无遮挡h肉动漫在线播放 | 欧美真人作爱免费视频 | 67194成是人免费无码 | 成人影院yy111111在线观看 | 久久99国产综合精品 | 偷窥日本少妇撒尿chinese | 少妇人妻大乳在线视频 | 成人女人看片免费视频放人 | 丰满岳乱妇在线观看中字无码 | 三上悠亚人妻中文字幕在线 | 水蜜桃色314在线观看 | 国产猛烈高潮尖叫视频免费 | 成人无码视频在线观看网站 | 97se亚洲精品一区 | 人人妻人人藻人人爽欧美一区 | 日韩欧美中文字幕在线三区 | 久久综合香蕉国产蜜臀av | 亚洲 日韩 欧美 成人 在线观看 | 中文精品无码中文字幕无码专区 | 国产情侣作爱视频免费观看 | 精品久久久久久亚洲精品 | 国产成人无码av片在线观看不卡 | 夜夜夜高潮夜夜爽夜夜爰爰 | 亚洲天堂2017无码中文 | 我要看www免费看插插视频 | 日本一卡2卡3卡四卡精品网站 | 青青青手机频在线观看 | 国产成人精品一区二区在线小狼 | 日日天日日夜日日摸 | 少妇一晚三次一区二区三区 | 国产精品无码久久av | 男女超爽视频免费播放 | 亚洲精品www久久久 | 欧美性猛交内射兽交老熟妇 | 国产无av码在线观看 | 欧美乱妇无乱码大黄a片 | 欧美亚洲日韩国产人成在线播放 | 亚洲乱码国产乱码精品精 | 国产农村乱对白刺激视频 | 国产成人精品必看 | 久久久久se色偷偷亚洲精品av | 人妻无码αv中文字幕久久琪琪布 | 熟妇人妻中文av无码 | 成在人线av无码免观看麻豆 | 奇米影视7777久久精品 | 丁香啪啪综合成人亚洲 | 乱码av麻豆丝袜熟女系列 | 国产极品美女高潮无套在线观看 | 色欲人妻aaaaaaa无码 | 丰满肥臀大屁股熟妇激情视频 | 亚洲乱码日产精品bd | 一区二区三区乱码在线 | 欧洲 | 综合激情五月综合激情五月激情1 | 人人妻人人澡人人爽欧美精品 | 鲁鲁鲁爽爽爽在线视频观看 | 欧美性黑人极品hd | 国产激情综合五月久久 | 久久午夜无码鲁丝片午夜精品 | 国产精品丝袜黑色高跟鞋 | 丰满岳乱妇在线观看中字无码 | 亚洲精品午夜无码电影网 | 激情爆乳一区二区三区 | 无码任你躁久久久久久久 | 搡女人真爽免费视频大全 | 久久久久av无码免费网 | 国产精品久久久久影院嫩草 | 国产成人精品一区二区在线小狼 | 狠狠cao日日穞夜夜穞av | 无码精品人妻一区二区三区av | 亚洲国产精品无码一区二区三区 | 午夜无码人妻av大片色欲 | 欧美变态另类xxxx | 久久亚洲国产成人精品性色 | 国产无套粉嫩白浆在线 | 一本久久伊人热热精品中文字幕 | 精品人妻中文字幕有码在线 | 精品偷拍一区二区三区在线看 | 国内综合精品午夜久久资源 | 四十如虎的丰满熟妇啪啪 | 久久精品国产大片免费观看 | 精品久久久无码人妻字幂 | 国内揄拍国内精品少妇国语 | 日韩精品无码免费一区二区三区 | 亚洲s色大片在线观看 | 激情亚洲一区国产精品 | 国产av人人夜夜澡人人爽麻豆 | 亚洲自偷精品视频自拍 | 欧美丰满熟妇xxxx | 久久99精品国产麻豆蜜芽 | 久久天天躁狠狠躁夜夜免费观看 | 麻豆精品国产精华精华液好用吗 | 中文精品久久久久人妻不卡 | 男人和女人高潮免费网站 | 国产 精品 自在自线 | 日韩人妻系列无码专区 | 精品国产青草久久久久福利 | 免费人成网站视频在线观看 | 日韩亚洲欧美中文高清在线 | 久久久久久a亚洲欧洲av冫 | 亚洲欧洲中文日韩av乱码 | 国产99久久精品一区二区 | 少妇愉情理伦片bd | 国产极品视觉盛宴 | 天天拍夜夜添久久精品大 | 无码人妻精品一区二区三区下载 | 色婷婷av一区二区三区之红樱桃 | 亚洲春色在线视频 | 人人妻人人澡人人爽欧美一区 | 亚洲国产av精品一区二区蜜芽 | 欧美精品在线观看 | 激情亚洲一区国产精品 | 成人影院yy111111在线观看 | 色一情一乱一伦一区二区三欧美 | 久久国产精品_国产精品 | 久久精品女人的天堂av | 日本精品人妻无码77777 天堂一区人妻无码 | 窝窝午夜理论片影院 | 久久久久久久人妻无码中文字幕爆 | 在线欧美精品一区二区三区 | 国产精品va在线播放 | 欧美第一黄网免费网站 | 亚洲欧美日韩综合久久久 | 国产乱人伦av在线无码 | 秋霞成人午夜鲁丝一区二区三区 | 人人妻人人澡人人爽人人精品浪潮 | 国产舌乚八伦偷品w中 | 人妻中文无码久热丝袜 | 成年美女黄网站色大免费全看 | 国产综合久久久久鬼色 | 极品尤物被啪到呻吟喷水 | 丝袜人妻一区二区三区 | а√资源新版在线天堂 | 日本一区二区三区免费高清 | 国产av一区二区精品久久凹凸 | 精品日本一区二区三区在线观看 | 高清无码午夜福利视频 | 欧美日韩在线亚洲综合国产人 | 中文字幕 亚洲精品 第1页 | 性做久久久久久久久 | 久久午夜夜伦鲁鲁片无码免费 | 免费无码一区二区三区蜜桃大 | 99在线 | 亚洲 | 国产乱人伦av在线无码 | 牛和人交xxxx欧美 | 国产精品手机免费 | 日本一卡2卡3卡四卡精品网站 | 国产亚洲精品久久久ai换 | 国产精品久久久久7777 | 秋霞特色aa大片 | 理论片87福利理论电影 | 国产亚洲精品久久久久久大师 | 日韩av无码一区二区三区 | 国产乱人伦app精品久久 国产在线无码精品电影网 国产国产精品人在线视 | 亚洲天堂2017无码中文 | 国产一区二区不卡老阿姨 | 国产精品高潮呻吟av久久 | 97久久精品无码一区二区 | 欧美xxxx黑人又粗又长 | 装睡被陌生人摸出水好爽 | 国产99久久精品一区二区 | 久久精品女人天堂av免费观看 | 九一九色国产 | 国产成人精品三级麻豆 | 六月丁香婷婷色狠狠久久 | 少妇性l交大片 | 亚洲男人av天堂午夜在 | 无码乱肉视频免费大全合集 | 欧美成人免费全部网站 | 又黄又爽又色的视频 | 国产一区二区三区精品视频 | 成年美女黄网站色大免费视频 | 亚洲乱码中文字幕在线 | 中文字幕 亚洲精品 第1页 | 国产精品久久久久久久9999 | 国产深夜福利视频在线 | 国产激情无码一区二区app | 久久无码专区国产精品s | 在线观看国产午夜福利片 | 久久精品中文字幕一区 | 国产欧美精品一区二区三区 | 国产美女极度色诱视频www | 亚洲一区二区三区无码久久 | 初尝人妻少妇中文字幕 | 1000部啪啪未满十八勿入下载 | 日本一卡2卡3卡四卡精品网站 | 国产成人无码专区 | 激情亚洲一区国产精品 | 曰韩无码二三区中文字幕 | 国产亚洲欧美日韩亚洲中文色 | 亚洲呦女专区 | 在线天堂新版最新版在线8 | 强辱丰满人妻hd中文字幕 | 国产精品18久久久久久麻辣 | 九九综合va免费看 | 国产午夜视频在线观看 | 精品久久久中文字幕人妻 | 欧美 日韩 人妻 高清 中文 | 97久久超碰中文字幕 | 国产超碰人人爽人人做人人添 | 美女张开腿让人桶 | 日韩少妇内射免费播放 | 欧美人与禽zoz0性伦交 | 国产特级毛片aaaaaaa高清 | 图片区 小说区 区 亚洲五月 | 一本无码人妻在中文字幕免费 | 在线播放亚洲第一字幕 | 美女毛片一区二区三区四区 | 少妇厨房愉情理9仑片视频 | 麻豆国产人妻欲求不满 | 亚洲综合另类小说色区 | 久久人人爽人人人人片 | 久久久精品欧美一区二区免费 | 国产精品高潮呻吟av久久 | 爱做久久久久久 | 青青草原综合久久大伊人精品 | 国产亚洲精品久久久久久久 | 国产精品久久久一区二区三区 | 久久久久国色av免费观看性色 | 一本大道伊人av久久综合 | 国产成人久久精品流白浆 | yw尤物av无码国产在线观看 | 波多野结衣高清一区二区三区 | 亚洲欧美色中文字幕在线 | 国产一区二区三区日韩精品 | 99久久久无码国产aaa精品 | 中文字幕av伊人av无码av | 99久久99久久免费精品蜜桃 | 亚洲人成网站免费播放 | 亚洲精品中文字幕乱码 | 一本久道高清无码视频 | 秋霞特色aa大片 | 国产精品久久久 | 精品无码av一区二区三区 | 日韩欧美中文字幕在线三区 | 国产一精品一av一免费 | 国产日产欧产精品精品app | 久久久久亚洲精品男人的天堂 | 成人三级无码视频在线观看 | 少妇人妻偷人精品无码视频 | 日本精品人妻无码免费大全 | 亚洲国产欧美在线成人 | 麻豆国产人妻欲求不满谁演的 | 欧美野外疯狂做受xxxx高潮 | 老太婆性杂交欧美肥老太 | 人妻aⅴ无码一区二区三区 | 国产xxx69麻豆国语对白 | 亚洲国产精品久久久久久 | 中文字幕无码av波多野吉衣 | 久久精品99久久香蕉国产色戒 | 性做久久久久久久久 | 亚洲一区av无码专区在线观看 | 亚洲精品无码人妻无码 | 中文字幕 人妻熟女 | 1000部啪啪未满十八勿入下载 | 亚洲人成网站在线播放942 | 午夜成人1000部免费视频 | 国产亚洲视频中文字幕97精品 | 99久久精品午夜一区二区 | 国产无遮挡又黄又爽又色 | 亚洲一区二区三区 | 欧美黑人乱大交 | 亚洲精品久久久久久久久久久 | 国产一区二区不卡老阿姨 | 暴力强奷在线播放无码 | 丝袜人妻一区二区三区 | 在线观看免费人成视频 | 国产口爆吞精在线视频 | 欧美三级不卡在线观看 | 人人爽人人爽人人片av亚洲 | 日韩欧美成人免费观看 | 丰满人妻精品国产99aⅴ | 俄罗斯老熟妇色xxxx | 国产精品久久国产三级国 | 精品国产福利一区二区 | aⅴ亚洲 日韩 色 图网站 播放 | 人妻夜夜爽天天爽三区 | 亚洲男人av香蕉爽爽爽爽 | 扒开双腿吃奶呻吟做受视频 | 久久久精品欧美一区二区免费 | 亚洲a无码综合a国产av中文 | 国产特级毛片aaaaaa高潮流水 | 久久久久国色av免费观看性色 | 一本色道久久综合狠狠躁 | 国产综合在线观看 | 亚洲精品国产品国语在线观看 | 97资源共享在线视频 | 丝袜足控一区二区三区 | 亚洲国产精品久久人人爱 | 免费网站看v片在线18禁无码 | 精品厕所偷拍各类美女tp嘘嘘 | 免费国产黄网站在线观看 | 丝袜 中出 制服 人妻 美腿 | 亚洲中文字幕乱码av波多ji | 少妇厨房愉情理9仑片视频 | 国产午夜无码精品免费看 | 国产综合色产在线精品 | 亚洲色欲色欲天天天www | 伊人色综合久久天天小片 | 久久 国产 尿 小便 嘘嘘 | 亚洲综合久久一区二区 | 国产真人无遮挡作爱免费视频 | 日韩av激情在线观看 | 国产熟妇高潮叫床视频播放 | 狂野欧美性猛交免费视频 | 在线播放免费人成毛片乱码 | 狠狠色丁香久久婷婷综合五月 | 女人被爽到呻吟gif动态图视看 | 日韩欧美成人免费观看 | 成人无码视频免费播放 | 亚洲日本在线电影 | 久久国产精品偷任你爽任你 | 国产精品亚洲lv粉色 | 亚洲の无码国产の无码步美 | 成人精品天堂一区二区三区 | 久久精品国产一区二区三区肥胖 | 国产suv精品一区二区五 | 日韩精品无码一区二区中文字幕 | 国色天香社区在线视频 | 婷婷丁香五月天综合东京热 | 大地资源中文第3页 | 日本一区二区三区免费高清 | 风流少妇按摩来高潮 | 丝袜 中出 制服 人妻 美腿 | 乱码午夜-极国产极内射 | 免费人成在线观看网站 | 老子影院午夜伦不卡 | 亚洲综合久久一区二区 | 国产三级精品三级男人的天堂 | 久久综合激激的五月天 | 久久久久久a亚洲欧洲av冫 | 亚洲国产成人av在线观看 | 日日天日日夜日日摸 | 国产 精品 自在自线 | 亚洲国产精华液网站w | 亚洲综合在线一区二区三区 | 少妇被粗大的猛进出69影院 | 久久精品中文字幕大胸 | 一区二区三区乱码在线 | 欧洲 | 久久综合久久自在自线精品自 | 窝窝午夜理论片影院 | 国产精品亚洲专区无码不卡 | 波多野42部无码喷潮在线 | 国产精品美女久久久久av爽李琼 | 少妇无码一区二区二三区 | 亚洲精品一区二区三区在线 | 亚洲熟妇色xxxxx欧美老妇y | 色欲av亚洲一区无码少妇 | 六十路熟妇乱子伦 | 亚洲精品一区二区三区在线观看 | 黄网在线观看免费网站 | 久青草影院在线观看国产 | 樱花草在线社区www | 日本高清一区免费中文视频 | 少女韩国电视剧在线观看完整 | 欧美性色19p | 55夜色66夜色国产精品视频 | 2019午夜福利不卡片在线 | 国产精品亚洲一区二区三区喷水 | 国产人妻久久精品二区三区老狼 | 老子影院午夜伦不卡 | 久久www免费人成人片 | 成年女人永久免费看片 | 成人女人看片免费视频放人 | 国产特级毛片aaaaaaa高清 | 婷婷综合久久中文字幕蜜桃三电影 | 亚洲国产av精品一区二区蜜芽 | 国产精品国产三级国产专播 | 18精品久久久无码午夜福利 | a片免费视频在线观看 | 一本大道久久东京热无码av | 人妻天天爽夜夜爽一区二区 | 宝宝好涨水快流出来免费视频 | 大肉大捧一进一出好爽视频 | 玩弄少妇高潮ⅹxxxyw | 久久久www成人免费毛片 | 国产特级毛片aaaaaa高潮流水 | 国产网红无码精品视频 | 人妻少妇精品无码专区动漫 | 人人妻人人澡人人爽欧美一区 | 欧美日韩人成综合在线播放 | 狠狠综合久久久久综合网 | 午夜福利试看120秒体验区 | 久久久精品欧美一区二区免费 | 福利一区二区三区视频在线观看 | 亚洲精品成人av在线 | 亚洲国产高清在线观看视频 | 久久亚洲中文字幕无码 | 亚洲综合精品香蕉久久网 | 亚洲小说图区综合在线 | 中文字幕 人妻熟女 | 国产97在线 | 亚洲 | 精品国产一区av天美传媒 | 蜜桃视频韩日免费播放 | 亚洲狠狠婷婷综合久久 | 性色欲情网站iwww九文堂 | 学生妹亚洲一区二区 | 久久综合香蕉国产蜜臀av | 一二三四在线观看免费视频 | 国产人妻精品午夜福利免费 | 国产精品鲁鲁鲁 | 精品国产一区二区三区av 性色 | 天海翼激烈高潮到腰振不止 | 久久99精品国产.久久久久 | 亚洲精品中文字幕 | 无码中文字幕色专区 | 1000部夫妻午夜免费 | 国产成人人人97超碰超爽8 | 久久97精品久久久久久久不卡 | av无码不卡在线观看免费 | 中文字幕无码人妻少妇免费 | 国产9 9在线 | 中文 | 无码福利日韩神码福利片 | 76少妇精品导航 | 欧美性生交活xxxxxdddd | 97色伦图片97综合影院 | 日日干夜夜干 | 亚洲精品一区二区三区在线观看 | 鲁鲁鲁爽爽爽在线视频观看 | 国产特级毛片aaaaaa高潮流水 | 奇米综合四色77777久久 东京无码熟妇人妻av在线网址 | 亚洲熟女一区二区三区 | 无码免费一区二区三区 | 美女黄网站人色视频免费国产 | 中文字幕av日韩精品一区二区 | 国产精品久久久一区二区三区 | 日本精品久久久久中文字幕 | 中文字幕日产无线码一区 | 人人妻人人澡人人爽欧美精品 | 国产熟妇高潮叫床视频播放 | 亚洲精品欧美二区三区中文字幕 | 亚洲国产精品一区二区美利坚 | 国产精品久久久午夜夜伦鲁鲁 | 亚洲精品一区三区三区在线观看 | 丁香啪啪综合成人亚洲 | 国内精品一区二区三区不卡 | 少妇被粗大的猛进出69影院 | √天堂中文官网8在线 | 曰本女人与公拘交酡免费视频 | 欧美黑人巨大xxxxx | 国产精品久久福利网站 | 国产精品嫩草久久久久 | 少妇久久久久久人妻无码 | 国产亚洲精品精品国产亚洲综合 | 国产精品永久免费视频 | 成人三级无码视频在线观看 | 免费无码av一区二区 | 18禁黄网站男男禁片免费观看 | 欧美黑人性暴力猛交喷水 | 亚洲成av人片天堂网无码】 | 亚洲伊人久久精品影院 | 精品国产一区二区三区av 性色 | 领导边摸边吃奶边做爽在线观看 | 樱花草在线社区www | 亚洲色无码一区二区三区 | 牛和人交xxxx欧美 | 亚洲日韩av一区二区三区四区 | 亚洲日本va中文字幕 | 亚洲精品一区二区三区四区五区 | 一本久久a久久精品亚洲 | 偷窥日本少妇撒尿chinese | 久久五月精品中文字幕 | 亚洲熟妇色xxxxx欧美老妇 | 老太婆性杂交欧美肥老太 | 中文字幕无码免费久久9一区9 | 天干天干啦夜天干天2017 | 欧美肥老太牲交大战 | 亚洲综合色区中文字幕 | 98国产精品综合一区二区三区 | 国产精品久免费的黄网站 | 国产精品福利视频导航 | 丰满少妇高潮惨叫视频 | 成人女人看片免费视频放人 | 亚洲最大成人网站 | 国产真实夫妇视频 | 国产乡下妇女做爰 | 精品久久久久久人妻无码中文字幕 | 两性色午夜视频免费播放 | 亚洲一区二区三区国产精华液 | 人人妻人人澡人人爽欧美一区 | 一本久道久久综合婷婷五月 | 精品国产青草久久久久福利 | 久久综合九色综合97网 | 无码成人精品区在线观看 | 欧美国产日韩久久mv | 精品国产av色一区二区深夜久久 | 国产乱人伦app精品久久 国产在线无码精品电影网 国产国产精品人在线视 | 无码一区二区三区在线 | 奇米综合四色77777久久 东京无码熟妇人妻av在线网址 | 国产成人精品视频ⅴa片软件竹菊 | 性生交片免费无码看人 | 亚洲小说图区综合在线 | 免费播放一区二区三区 | a片免费视频在线观看 | 国产精品爱久久久久久久 | 欧美熟妇另类久久久久久不卡 | 小泽玛莉亚一区二区视频在线 | 亚洲狠狠色丁香婷婷综合 | 天堂久久天堂av色综合 | 激情综合激情五月俺也去 | 亚洲gv猛男gv无码男同 | 18无码粉嫩小泬无套在线观看 | 国产精品无码一区二区桃花视频 | 在线精品国产一区二区三区 | 国产内射爽爽大片视频社区在线 | 精品国精品国产自在久国产87 | 永久免费精品精品永久-夜色 | 国产xxx69麻豆国语对白 | 2019午夜福利不卡片在线 | 色综合久久久无码中文字幕 | 在线观看欧美一区二区三区 | 无码国产激情在线观看 | 四虎国产精品免费久久 | 窝窝午夜理论片影院 | 久久亚洲中文字幕无码 | 在线观看免费人成视频 | 色综合视频一区二区三区 | 亚洲日本va午夜在线电影 | 亚洲成av人片在线观看无码不卡 | 国产色精品久久人妻 | 成 人 网 站国产免费观看 | 婷婷丁香六月激情综合啪 | 少妇无码一区二区二三区 | 无码人妻丰满熟妇区五十路百度 | 久久亚洲中文字幕精品一区 | 天堂亚洲2017在线观看 | 精品人妻中文字幕有码在线 | 亚洲а∨天堂久久精品2021 | 亚洲综合在线一区二区三区 | 鲁一鲁av2019在线 | 高潮毛片无遮挡高清免费 | 欧美日韩色另类综合 | 国产综合色产在线精品 | 性生交片免费无码看人 | 欧美人与物videos另类 | 国产亚洲精品久久久久久久 | 久久久久久九九精品久 | 亚洲一区二区三区四区 | 大肉大捧一进一出视频出来呀 | 国产特级毛片aaaaaa高潮流水 | 免费无码av一区二区 | 99国产欧美久久久精品 | 亚洲の无码国产の无码影院 | 久久精品中文字幕一区 | 国产成人无码av一区二区 | 亚洲成在人网站无码天堂 | 熟妇激情内射com | 大肉大捧一进一出视频出来呀 | 国产在线aaa片一区二区99 | 国产精品亚洲综合色区韩国 | 未满成年国产在线观看 | 亚洲综合无码一区二区三区 | 久久精品国产日本波多野结衣 | 国语精品一区二区三区 | 国内精品人妻无码久久久影院蜜桃 | 精品偷自拍另类在线观看 | 福利一区二区三区视频在线观看 | 亚洲人成影院在线无码按摩店 | 国产凸凹视频一区二区 | 国产无av码在线观看 | 国产香蕉97碰碰久久人人 | 久久综合色之久久综合 | 美女毛片一区二区三区四区 | 成人aaa片一区国产精品 | 女人被男人躁得好爽免费视频 | 夜夜躁日日躁狠狠久久av | 伊人久久大香线蕉午夜 | 亚洲码国产精品高潮在线 | av人摸人人人澡人人超碰下载 | 日韩成人一区二区三区在线观看 | 国产激情精品一区二区三区 | 日本乱偷人妻中文字幕 | 午夜时刻免费入口 | 妺妺窝人体色www婷婷 | 天天躁夜夜躁狠狠是什么心态 | 亚洲男女内射在线播放 | 亚洲阿v天堂在线 | 国产麻豆精品一区二区三区v视界 | 丰满少妇弄高潮了www | 精品无码一区二区三区的天堂 | 国产性生交xxxxx无码 | www成人国产高清内射 | 综合网日日天干夜夜久久 | 亚洲综合另类小说色区 | 欧美性黑人极品hd | 日韩人妻少妇一区二区三区 | 国精产品一区二区三区 | 国产av一区二区精品久久凹凸 | 人妻有码中文字幕在线 | 欧美人与禽zoz0性伦交 | 人妻人人添人妻人人爱 | 中文字幕无码免费久久99 | 少妇厨房愉情理9仑片视频 | 麻豆md0077饥渴少妇 | 一个人免费观看的www视频 | 午夜不卡av免费 一本久久a久久精品vr综合 | 东京热男人av天堂 | 亚洲人成人无码网www国产 | 国产精品国产三级国产专播 | 国产亚洲人成在线播放 | 国产国语老龄妇女a片 | 亚洲自偷精品视频自拍 | 日日摸天天摸爽爽狠狠97 | 亚洲a无码综合a国产av中文 | 亚洲成a人片在线观看无码3d | 国产亚洲tv在线观看 | 国产艳妇av在线观看果冻传媒 | 少妇性俱乐部纵欲狂欢电影 | 亚洲日韩av一区二区三区四区 | 99久久婷婷国产综合精品青草免费 | 久久久亚洲欧洲日产国码αv | 樱花草在线播放免费中文 | 久久综合久久自在自线精品自 | 婷婷色婷婷开心五月四房播播 | 欧美精品免费观看二区 | 四虎永久在线精品免费网址 | 亚洲成av人综合在线观看 | 全黄性性激高免费视频 | 国产色在线 | 国产 | 亚洲国产一区二区三区在线观看 | 亚洲一区二区观看播放 | 中文无码伦av中文字幕 | 亚洲色www成人永久网址 | 国产真实伦对白全集 | 国产成人无码专区 | 精品人妻av区 | 夜夜夜高潮夜夜爽夜夜爰爰 | 欧美熟妇另类久久久久久不卡 | 久久午夜夜伦鲁鲁片无码免费 | 日本精品高清一区二区 | 乱中年女人伦av三区 | 奇米影视7777久久精品人人爽 | 成人片黄网站色大片免费观看 | 99久久久无码国产精品免费 | 日欧一片内射va在线影院 | 久久精品国产大片免费观看 | 性色欲情网站iwww九文堂 | 性色av无码免费一区二区三区 | 色欲av亚洲一区无码少妇 | 一二三四社区在线中文视频 | 国产精品igao视频网 | 亚洲精品中文字幕 | 久久久无码中文字幕久... | 免费人成在线观看网站 | 亚洲精品国产品国语在线观看 | 日本护士xxxxhd少妇 | 国产深夜福利视频在线 | 精品无人国产偷自产在线 | 亚洲精品成人av在线 | 中文字幕+乱码+中文字幕一区 | 少女韩国电视剧在线观看完整 | 九九久久精品国产免费看小说 | 亚洲无人区一区二区三区 | 精品一二三区久久aaa片 | 久久视频在线观看精品 | 无码人中文字幕 | 亚洲人成影院在线无码按摩店 | 樱花草在线播放免费中文 | 一个人看的视频www在线 | 国精产品一区二区三区 | 久久婷婷五月综合色国产香蕉 | 狠狠cao日日穞夜夜穞av | 日本精品人妻无码77777 天堂一区人妻无码 | 日产精品99久久久久久 | 无码一区二区三区在线 | 亚洲日韩av一区二区三区四区 | 亚洲色www成人永久网址 | 熟女体下毛毛黑森林 | 女人被男人爽到呻吟的视频 | 女人被男人躁得好爽免费视频 | 巨爆乳无码视频在线观看 | 国产超碰人人爽人人做人人添 | 青春草在线视频免费观看 | 日本精品人妻无码免费大全 | 妺妺窝人体色www婷婷 | 天堂а√在线中文在线 | 成人无码精品1区2区3区免费看 | 久久精品成人欧美大片 | 国产小呦泬泬99精品 | 欧美一区二区三区 | 男人扒开女人内裤强吻桶进去 | 久精品国产欧美亚洲色aⅴ大片 | 国内少妇偷人精品视频 | 人妻无码αv中文字幕久久琪琪布 | 精品无码成人片一区二区98 | 无码国产色欲xxxxx视频 | 天堂亚洲2017在线观看 | 国产精品久久久久无码av色戒 | 国产精品久久久久9999小说 | 无码人妻丰满熟妇区五十路百度 | 日欧一片内射va在线影院 | 女人被爽到呻吟gif动态图视看 | 乱中年女人伦av三区 | 国产suv精品一区二区五 | 99久久精品无码一区二区毛片 | 久激情内射婷内射蜜桃人妖 | 亚洲va欧美va天堂v国产综合 | 久久aⅴ免费观看 | 久久精品国产99精品亚洲 | 欧美日韩视频无码一区二区三 | 国产 精品 自在自线 | 欧美日韩一区二区免费视频 | 中文字幕无码日韩欧毛 | 无码国产色欲xxxxx视频 | 精品亚洲成av人在线观看 | 领导边摸边吃奶边做爽在线观看 | 双乳奶水饱满少妇呻吟 | 国产内射爽爽大片视频社区在线 | 精品久久久久久人妻无码中文字幕 | 欧美黑人巨大xxxxx | 亚洲欧洲日本综合aⅴ在线 | 国产成人精品三级麻豆 | 无码精品国产va在线观看dvd | 久久精品视频在线看15 | 久久精品中文闷骚内射 | 欧美精品无码一区二区三区 | 牲欲强的熟妇农村老妇女 | 午夜无码区在线观看 | 亚洲高清偷拍一区二区三区 | 麻豆精品国产精华精华液好用吗 | 久久综合给合久久狠狠狠97色 | 亚洲精品久久久久avwww潮水 | 国产人妻精品一区二区三区不卡 | 国产片av国语在线观看 | a片免费视频在线观看 | 欧美大屁股xxxxhd黑色 | 亚洲精品综合一区二区三区在线 | 日日鲁鲁鲁夜夜爽爽狠狠 | 男人扒开女人内裤强吻桶进去 | 天天燥日日燥 | 日日麻批免费40分钟无码 | 77777熟女视频在线观看 а天堂中文在线官网 | 两性色午夜视频免费播放 | 成人无码精品一区二区三区 | 色情久久久av熟女人妻网站 | 国产精品18久久久久久麻辣 | 国产情侣作爱视频免费观看 | 久久久久久久人妻无码中文字幕爆 | 丰满岳乱妇在线观看中字无码 | 日韩精品无码一区二区中文字幕 | 无码吃奶揉捏奶头高潮视频 | 综合激情五月综合激情五月激情1 | 蜜臀av在线观看 在线欧美精品一区二区三区 | 国产三级精品三级男人的天堂 | 日韩在线不卡免费视频一区 | 国产精品久久福利网站 | 无码精品人妻一区二区三区av | 成在人线av无码免费 | 国产精品igao视频网 | 麻豆国产97在线 | 欧洲 | 成 人 网 站国产免费观看 | 日韩av无码一区二区三区不卡 | 久久精品国产精品国产精品污 | 欧美熟妇另类久久久久久多毛 | 亚洲爆乳精品无码一区二区三区 | 精品乱子伦一区二区三区 | 成人影院yy111111在线观看 | 日本又色又爽又黄的a片18禁 | 国产人妻精品午夜福利免费 | 少妇性l交大片 | 日韩av无码一区二区三区不卡 | 性做久久久久久久久 | 亚洲中文字幕成人无码 | 亚洲成av人片天堂网无码】 | 夜夜影院未满十八勿进 | 少妇厨房愉情理9仑片视频 | 无码国模国产在线观看 | 色婷婷欧美在线播放内射 | 亚洲一区av无码专区在线观看 | 亚洲欧洲日本无在线码 | 亚洲色偷偷偷综合网 | 4hu四虎永久在线观看 | 亚洲精品久久久久久一区二区 | 亚洲爆乳精品无码一区二区三区 | 中文字幕av伊人av无码av | 18禁止看的免费污网站 | 精品国精品国产自在久国产87 | 亚洲中文字幕在线无码一区二区 | 国内精品一区二区三区不卡 | 亚洲人成影院在线无码按摩店 | 国产后入清纯学生妹 | 亚洲色在线无码国产精品不卡 | 久久久久久久久蜜桃 | 亚洲va欧美va天堂v国产综合 | 国产在线无码精品电影网 | 亚洲欧洲日本综合aⅴ在线 | 乌克兰少妇xxxx做受 | 亚洲国产精品一区二区美利坚 | 一本久久a久久精品亚洲 | 国产在线无码精品电影网 | 天下第一社区视频www日本 | 丰满少妇高潮惨叫视频 | 久久国产精品偷任你爽任你 | 国产精品久久久久7777 | 成年美女黄网站色大免费全看 | 精品 日韩 国产 欧美 视频 | 久久精品国产亚洲精品 | 天天av天天av天天透 | 成人性做爰aaa片免费看不忠 | 国产av人人夜夜澡人人爽麻豆 | 东京无码熟妇人妻av在线网址 | 性欧美牲交xxxxx视频 | 亚洲国产欧美日韩精品一区二区三区 | 初尝人妻少妇中文字幕 | 色综合天天综合狠狠爱 | 国产熟女一区二区三区四区五区 | a在线观看免费网站大全 | 国内揄拍国内精品少妇国语 | 色情久久久av熟女人妻网站 | 成在人线av无码免观看麻豆 | 人人澡人人透人人爽 | 欧美亚洲日韩国产人成在线播放 | 成人免费视频视频在线观看 免费 | 久久久久久久女国产乱让韩 | 国产无套粉嫩白浆在线 | a国产一区二区免费入口 | а天堂中文在线官网 | 亚洲中文字幕成人无码 | 日韩精品无码一区二区中文字幕 | 成 人 免费观看网站 | 久久久国产精品无码免费专区 | 中国女人内谢69xxxxxa片 | 中文字幕日韩精品一区二区三区 | 蜜桃av抽搐高潮一区二区 | 精品人妻av区 | 精品一区二区三区无码免费视频 | 国产真实伦对白全集 | 国产精品va在线观看无码 | 国产亚洲精品久久久久久久 | 国内老熟妇对白xxxxhd | 粗大的内捧猛烈进出视频 | 国产精品久久久久7777 | 蜜臀av无码人妻精品 | 香港三级日本三级妇三级 | 亚洲综合另类小说色区 | 欧美性生交xxxxx久久久 | 最近免费中文字幕中文高清百度 | 成人精品视频一区二区 | 久久国产精品二国产精品 | 国产一区二区三区精品视频 | 国产美女精品一区二区三区 | 最近免费中文字幕中文高清百度 | 亚洲国产高清在线观看视频 | 午夜成人1000部免费视频 | 四虎国产精品一区二区 | 精品人妻人人做人人爽夜夜爽 | 国产熟女一区二区三区四区五区 | 亚洲人成人无码网www国产 | 亚洲成av人影院在线观看 | 狠狠色噜噜狠狠狠狠7777米奇 | 久久精品成人欧美大片 | 亚洲国产精品久久久天堂 | 亚洲理论电影在线观看 | 波多野结衣高清一区二区三区 | 久久人人爽人人爽人人片av高清 | 丰满少妇弄高潮了www | 毛片内射-百度 | 国产成人精品视频ⅴa片软件竹菊 | 免费网站看v片在线18禁无码 | 久久久久久久久蜜桃 | 夜精品a片一区二区三区无码白浆 | 久久久精品456亚洲影院 | 蜜桃av抽搐高潮一区二区 | 亚洲精品久久久久久一区二区 | 精品一二三区久久aaa片 | 国产偷抇久久精品a片69 | 国产午夜亚洲精品不卡 | 九九综合va免费看 | 亚洲综合伊人久久大杳蕉 | 沈阳熟女露脸对白视频 | 国精产品一品二品国精品69xx | 嫩b人妻精品一区二区三区 | 欧美精品国产综合久久 | 国产无遮挡吃胸膜奶免费看 | 熟女少妇在线视频播放 | 女人和拘做爰正片视频 | 精品一区二区三区波多野结衣 | 国产性生交xxxxx无码 | 国产超碰人人爽人人做人人添 | 成人免费视频在线观看 | 亚洲精品欧美二区三区中文字幕 | 欧美大屁股xxxxhd黑色 | 久久亚洲中文字幕无码 | 荡女精品导航 | 精品国产一区二区三区四区 | 免费无码一区二区三区蜜桃大 | 久久久久人妻一区精品色欧美 | 少妇无码吹潮 | 少妇被黑人到高潮喷出白浆 | 欧美午夜特黄aaaaaa片 | 狂野欧美激情性xxxx | 成人试看120秒体验区 | 露脸叫床粗话东北少妇 | 天堂а√在线地址中文在线 | 亚无码乱人伦一区二区 | 人妻少妇精品无码专区动漫 | 国产一区二区三区影院 | 天天拍夜夜添久久精品 | 国产做国产爱免费视频 | 久久国产自偷自偷免费一区调 | 国产亚洲精品久久久闺蜜 | 亚洲欧美国产精品专区久久 | 国产成人精品久久亚洲高清不卡 | 少妇的肉体aa片免费 | 国产免费久久精品国产传媒 | 精品国产乱码久久久久乱码 | 97无码免费人妻超级碰碰夜夜 | 又大又硬又黄的免费视频 | 成人无码精品一区二区三区 | 永久黄网站色视频免费直播 | 欧洲精品码一区二区三区免费看 | 少妇性荡欲午夜性开放视频剧场 | 伊在人天堂亚洲香蕉精品区 | 欧美熟妇另类久久久久久不卡 | 中文无码精品a∨在线观看不卡 | 在线播放免费人成毛片乱码 | 免费无码av一区二区 | 国产午夜视频在线观看 | 亚洲乱码中文字幕在线 | 精品熟女少妇av免费观看 | 综合激情五月综合激情五月激情1 | 欧美xxxx黑人又粗又长 | 国产xxx69麻豆国语对白 | 特级做a爰片毛片免费69 | 免费网站看v片在线18禁无码 | 天堂а√在线地址中文在线 | 天堂久久天堂av色综合 | 日韩av无码一区二区三区 | 国产精品久久国产三级国 | 一个人免费观看的www视频 | 丰满人妻被黑人猛烈进入 | 日本爽爽爽爽爽爽在线观看免 | 99久久久无码国产精品免费 | 精品成人av一区二区三区 | 日韩无码专区 | 日韩无套无码精品 | 久久久精品成人免费观看 | 久久亚洲a片com人成 | 一个人免费观看的www视频 | 日韩人妻无码一区二区三区久久99 | 国产人妻人伦精品1国产丝袜 | 激情内射亚州一区二区三区爱妻 | 国产乱码精品一品二品 | 清纯唯美经典一区二区 | 精品久久久久香蕉网 | 精品久久久久久亚洲精品 | 日日摸夜夜摸狠狠摸婷婷 | 欧美国产日韩久久mv | 成熟女人特级毛片www免费 | 亚洲日韩av一区二区三区中文 | 99精品久久毛片a片 | 国产av无码专区亚洲a∨毛片 | 免费乱码人妻系列无码专区 | 日韩av无码一区二区三区 | 成人精品视频一区二区三区尤物 | 夫妻免费无码v看片 | 九九久久精品国产免费看小说 | 国产成人无码av在线影院 | 精品国产一区av天美传媒 | 欧美人妻一区二区三区 | av在线亚洲欧洲日产一区二区 | 97久久国产亚洲精品超碰热 | 亚拍精品一区二区三区探花 | 国产精品自产拍在线观看 | 久久久成人毛片无码 | 久久久久se色偷偷亚洲精品av | 午夜免费福利小电影 | 久久亚洲日韩精品一区二区三区 | 熟妇人妻无码xxx视频 | 日本精品高清一区二区 | 国产特级毛片aaaaaaa高清 | 精品一区二区不卡无码av | 亚洲综合无码久久精品综合 | 国内精品一区二区三区不卡 | 亚洲第一网站男人都懂 | 18无码粉嫩小泬无套在线观看 | 中文字幕人妻丝袜二区 | 午夜福利试看120秒体验区 | 天下第一社区视频www日本 | 综合人妻久久一区二区精品 | av小次郎收藏 | 内射巨臀欧美在线视频 | 激情爆乳一区二区三区 | 欧美日本免费一区二区三区 | 色诱久久久久综合网ywww | 国产午夜亚洲精品不卡下载 | 国产免费观看黄av片 | 99久久99久久免费精品蜜桃 | 亚洲成a人片在线观看日本 | 日本在线高清不卡免费播放 | 欧美老熟妇乱xxxxx | 国产高清av在线播放 | 亚洲欧美国产精品久久 | 午夜精品久久久内射近拍高清 | 国产精品毛片一区二区 | 自拍偷自拍亚洲精品10p | 夜夜躁日日躁狠狠久久av | 国产精品-区区久久久狼 | 亚洲熟妇色xxxxx欧美老妇 | 国产无遮挡又黄又爽免费视频 | 中文字幕无码热在线视频 | 天天综合网天天综合色 | 婷婷丁香五月天综合东京热 | 日韩精品无码一本二本三本色 | 在线欧美精品一区二区三区 | 男女下面进入的视频免费午夜 | 中文无码精品a∨在线观看不卡 | 日韩av无码一区二区三区 | 亚洲精品国偷拍自产在线麻豆 | 麻豆国产人妻欲求不满 | 国产成人无码专区 | 999久久久国产精品消防器材 | 男女爱爱好爽视频免费看 | 男人扒开女人内裤强吻桶进去 | 欧美国产亚洲日韩在线二区 | 成 人 网 站国产免费观看 | 亚拍精品一区二区三区探花 | 无码av岛国片在线播放 | 成熟女人特级毛片www免费 | 亚洲人成影院在线无码按摩店 | 欧美日韩在线亚洲综合国产人 | 鲁大师影院在线观看 | 免费无码的av片在线观看 | 3d动漫精品啪啪一区二区中 | 久久久久久a亚洲欧洲av冫 | 午夜理论片yy44880影院 | 国产人妻大战黑人第1集 | 国产熟妇高潮叫床视频播放 | 高潮喷水的毛片 | 麻豆蜜桃av蜜臀av色欲av | 欧美成人免费全部网站 | 一区二区传媒有限公司 | 国内少妇偷人精品视频免费 | 扒开双腿疯狂进出爽爽爽视频 | 欧美国产日韩亚洲中文 | 国产精品视频免费播放 | 国产在线一区二区三区四区五区 | 中国女人内谢69xxxxxa片 | 国产香蕉97碰碰久久人人 | 精品人妻人人做人人爽夜夜爽 | 亚洲欧美色中文字幕在线 | 西西人体www44rt大胆高清 | 久久综合狠狠综合久久综合88 | 亚洲午夜久久久影院 | 精品国偷自产在线视频 | 无码任你躁久久久久久久 | 乱人伦人妻中文字幕无码 | 熟妇人妻中文av无码 | 大肉大捧一进一出视频出来呀 | 夜精品a片一区二区三区无码白浆 | 天堂а√在线中文在线 | 波多野结衣aⅴ在线 | 色爱情人网站 | 国产成人无码a区在线观看视频app | 无码精品人妻一区二区三区av | 狠狠躁日日躁夜夜躁2020 | 国产无遮挡吃胸膜奶免费看 | 亚洲国产av美女网站 | 人妻少妇精品视频专区 | 激情五月综合色婷婷一区二区 | 成人动漫在线观看 | 国产精品久久国产三级国 | 日韩人妻无码一区二区三区久久99 | 久久97精品久久久久久久不卡 | 国产三级精品三级男人的天堂 | 国产极品美女高潮无套在线观看 | 人妻人人添人妻人人爱 | 亚洲日韩av片在线观看 | 国产精品理论片在线观看 | 成人片黄网站色大片免费观看 | 欧美猛少妇色xxxxx | 麻豆蜜桃av蜜臀av色欲av | 初尝人妻少妇中文字幕 | 乱人伦人妻中文字幕无码 | 欧美色就是色 | 亚洲爆乳精品无码一区二区三区 | 国产网红无码精品视频 | 水蜜桃亚洲一二三四在线 | 四虎国产精品一区二区 | 国产偷国产偷精品高清尤物 | 国产精品爱久久久久久久 | 精品无码国产自产拍在线观看蜜 | 成人欧美一区二区三区黑人 | 国产精品亚洲lv粉色 | 国产极品美女高潮无套在线观看 | 欧美三级不卡在线观看 | 波多野结衣av一区二区全免费观看 | 沈阳熟女露脸对白视频 | 奇米影视888欧美在线观看 | 超碰97人人做人人爱少妇 | 日韩人妻无码一区二区三区久久99 | 亚洲成在人网站无码天堂 | 国产无套内射久久久国产 | 亚洲а∨天堂久久精品2021 | 国内少妇偷人精品视频 | 东京无码熟妇人妻av在线网址 | 日本护士xxxxhd少妇 | 一二三四在线观看免费视频 | 97精品人妻一区二区三区香蕉 | 亚洲熟妇色xxxxx欧美老妇 | 国产精品久久久av久久久 | 久久99久久99精品中文字幕 | 欧美兽交xxxx×视频 | 内射后入在线观看一区 | 2019午夜福利不卡片在线 | 日本一卡二卡不卡视频查询 | 夜夜影院未满十八勿进 | 国产女主播喷水视频在线观看 | 久久综合激激的五月天 | 人妻人人添人妻人人爱 | 亚洲人成网站色7799 | 香港三级日本三级妇三级 | 亚洲欧洲无卡二区视頻 | 婷婷六月久久综合丁香 | 免费看少妇作爱视频 | 国产精品对白交换视频 | 亚洲自偷自拍另类第1页 | 美女张开腿让人桶 | 人妻人人添人妻人人爱 | 全球成人中文在线 | av无码不卡在线观看免费 | 荫蒂被男人添的好舒服爽免费视频 | 欧美喷潮久久久xxxxx | 成 人 免费观看网站 | 久久精品99久久香蕉国产色戒 | 欧美性猛交xxxx富婆 | 国产真实夫妇视频 | 国产精品无套呻吟在线 | 无码av最新清无码专区吞精 | 少妇人妻大乳在线视频 | 欧洲精品码一区二区三区免费看 | 亚洲国产精品美女久久久久 | 国产精品久久久久7777 | 国产激情精品一区二区三区 | 欧洲欧美人成视频在线 | 国产精品久久久久影院嫩草 | 少妇人妻大乳在线视频 | 蜜臀aⅴ国产精品久久久国产老师 | 黑人巨大精品欧美一区二区 | 日韩亚洲欧美中文高清在线 | 久久精品人人做人人综合 | 精品久久久久久人妻无码中文字幕 | 国产疯狂伦交大片 | 成在人线av无码免费 | 中文字幕无线码免费人妻 | 全黄性性激高免费视频 | 亚洲爆乳精品无码一区二区三区 | 色情久久久av熟女人妻网站 | 欧美老人巨大xxxx做受 | 乱码午夜-极国产极内射 | 女人被爽到呻吟gif动态图视看 | 在线精品国产一区二区三区 | 亚洲人成网站在线播放942 | 国产热a欧美热a在线视频 | 国产香蕉尹人综合在线观看 | 日本熟妇人妻xxxxx人hd | 亚洲精品一区二区三区在线 | 亚欧洲精品在线视频免费观看 | 国产黄在线观看免费观看不卡 | 波多野结衣av在线观看 | 亚洲日韩一区二区三区 | 日韩精品久久久肉伦网站 | 国产亚洲美女精品久久久2020 | 天天爽夜夜爽夜夜爽 | 久久综合色之久久综合 | 久久国产自偷自偷免费一区调 | 丰满人妻一区二区三区免费视频 | 精品国偷自产在线视频 | 亚洲精品一区三区三区在线观看 | 无码av免费一区二区三区试看 | 午夜性刺激在线视频免费 | 国产一区二区三区四区五区加勒比 | 99久久精品日本一区二区免费 | 国产精品内射视频免费 | 国内揄拍国内精品人妻 | 中文字幕av无码一区二区三区电影 | 无码人妻av免费一区二区三区 | 国产麻豆精品一区二区三区v视界 | 丰满护士巨好爽好大乳 | 夜精品a片一区二区三区无码白浆 | 国产精品爱久久久久久久 | 学生妹亚洲一区二区 | 中文精品久久久久人妻不卡 | 女人色极品影院 | 熟妇人妻无乱码中文字幕 | 午夜无码人妻av大片色欲 | 亚洲人成影院在线无码按摩店 | 我要看www免费看插插视频 | 国产成人亚洲综合无码 | 亚洲欧洲无卡二区视頻 | 国产无套内射久久久国产 | 性啪啪chinese东北女人 | 少妇无码一区二区二三区 | 在教室伦流澡到高潮hnp视频 | 国产精品久免费的黄网站 | 天天躁夜夜躁狠狠是什么心态 | 日产精品99久久久久久 | 少妇无码av无码专区在线观看 | 人人妻人人澡人人爽人人精品 | 国产电影无码午夜在线播放 | 狠狠色噜噜狠狠狠狠7777米奇 | 性做久久久久久久久 | 97色伦图片97综合影院 | 精品无码一区二区三区的天堂 | 少妇被粗大的猛进出69影院 | 亚洲国产一区二区三区在线观看 | а√资源新版在线天堂 | 久久99热只有频精品8 | 亚洲精品成a人在线观看 | 沈阳熟女露脸对白视频 | 精品一区二区三区波多野结衣 | 亚洲国精产品一二二线 | 亚洲色欲色欲欲www在线 | 精品久久久无码中文字幕 | 久久精品国产一区二区三区 | 乱人伦人妻中文字幕无码久久网 | 亚洲欧美国产精品专区久久 | 国产 浪潮av性色四虎 | 欧美成人午夜精品久久久 | 无套内谢的新婚少妇国语播放 | 国产亚洲欧美日韩亚洲中文色 | 国产乱人无码伦av在线a | 乌克兰少妇xxxx做受 | 国产无套粉嫩白浆在线 | 久久国产精品精品国产色婷婷 | 亚洲中文无码av永久不收费 | 国产乱码精品一品二品 | 久青草影院在线观看国产 | 精品成人av一区二区三区 | 精品国产一区二区三区av 性色 | 成人aaa片一区国产精品 | 国产成人精品无码播放 | 伊人久久大香线焦av综合影院 | 131美女爱做视频 | 国产高清av在线播放 | 国产成人一区二区三区在线观看 | 国产精品人人妻人人爽 | 国产成人精品一区二区在线小狼 | 成人性做爰aaa片免费看不忠 | 无套内谢老熟女 | 亚洲乱码中文字幕在线 | 青草青草久热国产精品 | 人人爽人人爽人人片av亚洲 | www国产亚洲精品久久久日本 | 色五月丁香五月综合五月 | 国产精品久久久久久久9999 | 欧美怡红院免费全部视频 | 久久综合狠狠综合久久综合88 | 在线а√天堂中文官网 | 亚洲中文字幕无码中文字在线 | 澳门永久av免费网站 | 亚洲日本一区二区三区在线 | 骚片av蜜桃精品一区 | 无遮挡啪啪摇乳动态图 | 久久久久成人片免费观看蜜芽 | 欧美黑人乱大交 | 性色欲情网站iwww九文堂 | 亚洲精品美女久久久久久久 | 麻豆蜜桃av蜜臀av色欲av | 俺去俺来也www色官网 | √天堂中文官网8在线 | 18禁黄网站男男禁片免费观看 | 久久99热只有频精品8 | 人妻与老人中文字幕 | 精品无码国产自产拍在线观看蜜 | 丁香啪啪综合成人亚洲 | 久久国语露脸国产精品电影 | 97人妻精品一区二区三区 | 国色天香社区在线视频 | 中文亚洲成a人片在线观看 | 狠狠噜狠狠狠狠丁香五月 | 国内揄拍国内精品人妻 | 对白脏话肉麻粗话av | 丰满肥臀大屁股熟妇激情视频 | 97精品国产97久久久久久免费 | 图片小说视频一区二区 | 国产人妻大战黑人第1集 | 亚洲熟妇色xxxxx亚洲 | 久久这里只有精品视频9 | 久久久久人妻一区精品色欧美 | 99久久99久久免费精品蜜桃 | 无码人妻精品一区二区三区下载 | 亚洲精品国产精品乱码视色 | 国产精品成人av在线观看 | 国内揄拍国内精品少妇国语 | 国产两女互慰高潮视频在线观看 | 亚洲理论电影在线观看 | 无码任你躁久久久久久久 | 中文字幕日韩精品一区二区三区 | 国产午夜无码精品免费看 | 成在人线av无码免观看麻豆 | 日本精品少妇一区二区三区 | 人妻少妇精品视频专区 | 蜜桃视频插满18在线观看 | a在线亚洲男人的天堂 | 少妇高潮一区二区三区99 | 国产美女极度色诱视频www | 少妇性l交大片 | 亚洲精品国偷拍自产在线观看蜜桃 | 高潮喷水的毛片 | 无码av免费一区二区三区试看 | 巨爆乳无码视频在线观看 | 日日噜噜噜噜夜夜爽亚洲精品 | 精品国精品国产自在久国产87 | 熟妇人妻中文av无码 | 少妇性俱乐部纵欲狂欢电影 | 亚洲成a人片在线观看无码3d | 国产色在线 | 国产 | 久久人人爽人人爽人人片ⅴ | 国产乱人伦app精品久久 国产在线无码精品电影网 国产国产精品人在线视 | 久久久精品欧美一区二区免费 | 性色欲网站人妻丰满中文久久不卡 | 熟妇人妻无码xxx视频 | 亚洲成av人在线观看网址 | 国产超级va在线观看视频 | 婷婷色婷婷开心五月四房播播 | 久久综合香蕉国产蜜臀av | 999久久久国产精品消防器材 | 55夜色66夜色国产精品视频 | 国产午夜福利100集发布 | 国产精品无码一区二区三区不卡 | 偷窥日本少妇撒尿chinese | 亚洲а∨天堂久久精品2021 | 正在播放老肥熟妇露脸 | 亚洲精品国偷拍自产在线观看蜜桃 | 麻豆md0077饥渴少妇 | 久久国产精品精品国产色婷婷 | ass日本丰满熟妇pics | 亚洲国产成人a精品不卡在线 | 白嫩日本少妇做爰 | 亚洲乱码日产精品bd | 高潮毛片无遮挡高清免费视频 | 丰满人妻精品国产99aⅴ | 粉嫩少妇内射浓精videos | 97色伦图片97综合影院 | 日韩精品无码一本二本三本色 | 51国偷自产一区二区三区 | 性史性农村dvd毛片 | 国产精品久久久一区二区三区 | 伦伦影院午夜理论片 | 99久久人妻精品免费一区 | 影音先锋中文字幕无码 | 久久精品中文字幕大胸 | 国产精品内射视频免费 | 少妇的肉体aa片免费 | 色婷婷香蕉在线一区二区 | 欧美日本免费一区二区三区 | 无码人妻av免费一区二区三区 | 国产xxx69麻豆国语对白 | 中文字幕无码人妻少妇免费 | 久久久精品国产sm最大网站 | 国产一精品一av一免费 | 欧洲熟妇色 欧美 | 国产免费无码一区二区视频 | 亚洲日韩av一区二区三区中文 | 正在播放老肥熟妇露脸 | 亚洲色欲色欲天天天www | 大屁股大乳丰满人妻 | 国产内射爽爽大片视频社区在线 | 成人无码视频在线观看网站 | 久久久久久亚洲精品a片成人 | 中文无码伦av中文字幕 | 黄网在线观看免费网站 | 在线a亚洲视频播放在线观看 | 国产乱子伦视频在线播放 | 黑森林福利视频导航 | 亚洲s色大片在线观看 | 国产午夜福利亚洲第一 | 熟女少妇人妻中文字幕 | 欧美放荡的少妇 | 在线播放亚洲第一字幕 | 精品亚洲韩国一区二区三区 | 久久亚洲中文字幕无码 | 亚洲 a v无 码免 费 成 人 a v | 亚洲伊人久久精品影院 | 一本大道伊人av久久综合 | www国产亚洲精品久久久日本 | 色五月丁香五月综合五月 | 精品无码一区二区三区的天堂 | 国产午夜手机精彩视频 | 无遮挡啪啪摇乳动态图 | 欧美人与牲动交xxxx | 乌克兰少妇性做爰 | 丰满人妻精品国产99aⅴ | a在线观看免费网站大全 | 午夜嘿嘿嘿影院 | 草草网站影院白丝内射 | 亚洲欧美日韩国产精品一区二区 | 亚洲国产精品久久久久久 | 伊人久久婷婷五月综合97色 | 搡女人真爽免费视频大全 | 一个人看的视频www在线 | 成人无码影片精品久久久 | 乱码午夜-极国产极内射 | 伊在人天堂亚洲香蕉精品区 | 久精品国产欧美亚洲色aⅴ大片 | 国产成人av免费观看 | 国产精品高潮呻吟av久久4虎 | 欧洲vodafone精品性 | 亚洲欧美综合区丁香五月小说 | 露脸叫床粗话东北少妇 | 精品久久久无码中文字幕 | 鲁一鲁av2019在线 | 鲁大师影院在线观看 | 国产成人人人97超碰超爽8 | 国产精品丝袜黑色高跟鞋 | 无码人妻丰满熟妇区毛片18 | 久久亚洲精品成人无码 | 国产无av码在线观看 | 国产成人人人97超碰超爽8 | 亚洲色在线无码国产精品不卡 | 国产麻豆精品一区二区三区v视界 | 无码国内精品人妻少妇 | 中文无码伦av中文字幕 | 国产绳艺sm调教室论坛 | 久久综合久久自在自线精品自 | 亚洲精品鲁一鲁一区二区三区 | 曰韩无码二三区中文字幕 | 东京热男人av天堂 | 国产av久久久久精东av | 国产无遮挡又黄又爽免费视频 | 久激情内射婷内射蜜桃人妖 | 久久午夜无码鲁丝片秋霞 | 丰腴饱满的极品熟妇 | 99视频精品全部免费免费观看 | 亚洲熟妇色xxxxx欧美老妇y | v一区无码内射国产 | 欧美黑人性暴力猛交喷水 | 麻豆md0077饥渴少妇 | 成人欧美一区二区三区黑人 | 夜先锋av资源网站 | 日本丰满护士爆乳xxxx | 99久久精品午夜一区二区 | 偷窥村妇洗澡毛毛多 | 日本精品人妻无码77777 天堂一区人妻无码 | 日本乱人伦片中文三区 | 狠狠cao日日穞夜夜穞av | 免费无码肉片在线观看 | 中文字幕人妻无码一区二区三区 | 欧美日韩一区二区综合 | 55夜色66夜色国产精品视频 | 久热国产vs视频在线观看 | 色一情一乱一伦 | 亚洲の无码国产の无码步美 | aⅴ在线视频男人的天堂 | 国产精品久久久久影院嫩草 | 精品一区二区三区无码免费视频 | 久久精品无码一区二区三区 | 国产性生大片免费观看性 | 国产无遮挡又黄又爽免费视频 | 又黄又爽又色的视频 | 亚洲中文字幕在线无码一区二区 | 国产精品永久免费视频 | 亚洲日本一区二区三区在线 | 男女爱爱好爽视频免费看 | 青青草原综合久久大伊人精品 | 国产午夜精品一区二区三区嫩草 | 国产乱子伦视频在线播放 | 亚洲理论电影在线观看 | 特级做a爰片毛片免费69 | 精品国产精品久久一区免费式 | 国产精品久久福利网站 | 老熟女乱子伦 | 伊人久久大香线蕉午夜 | 国产suv精品一区二区五 | 亚洲日韩一区二区 | 亚洲人成影院在线观看 | 老子影院午夜伦不卡 | 青草青草久热国产精品 | 国产精品久久久一区二区三区 | 麻豆成人精品国产免费 | 巨爆乳无码视频在线观看 | 中文字幕乱妇无码av在线 | 97夜夜澡人人双人人人喊 | 国产av无码专区亚洲a∨毛片 | 丁香花在线影院观看在线播放 | 国产极品美女高潮无套在线观看 | 人人澡人摸人人添 | 欧美 日韩 亚洲 在线 | 国内少妇偷人精品视频 | 伊人久久大香线焦av综合影院 | 激情国产av做激情国产爱 | 日本护士xxxxhd少妇 | 精品一区二区三区无码免费视频 | 国产一区二区不卡老阿姨 | 中文字幕人妻无码一夲道 | 正在播放老肥熟妇露脸 | 亚洲熟悉妇女xxx妇女av | 国产av一区二区精品久久凹凸 | 精品一区二区三区波多野结衣 | 男女性色大片免费网站 | 亚洲理论电影在线观看 | 国产午夜福利亚洲第一 | 性史性农村dvd毛片 | 亚洲中文字幕乱码av波多ji | 亚洲中文字幕无码中文字在线 | 久久久成人毛片无码 | 中文字幕乱码人妻二区三区 | 国产内射爽爽大片视频社区在线 | 日本一卡2卡3卡四卡精品网站 | 国产精品-区区久久久狼 | 午夜肉伦伦影院 | 大肉大捧一进一出好爽视频 | 成人一在线视频日韩国产 | а√天堂www在线天堂小说 | 伊人久久大香线蕉av一区二区 | 国产超碰人人爽人人做人人添 | 性啪啪chinese东北女人 | 爽爽影院免费观看 | 欧美熟妇另类久久久久久多毛 | 国产黄在线观看免费观看不卡 | 亚洲熟熟妇xxxx | 人人爽人人澡人人高潮 | 国产成人无码午夜视频在线观看 | 色妞www精品免费视频 | 中文字幕精品av一区二区五区 |