Skip to content

Commit 9e27db8

Browse files
committed
Update php-cheat-sheet.json
1 parent e34c841 commit 9e27db8

1 file changed

Lines changed: 68 additions & 0 deletions

File tree

data/php-cheat-sheet.json

Lines changed: 68 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -241,6 +241,74 @@
241241
{
242242
"definition": "একটি স্ট্রিং কে আ্যরেতে রুপান্তর করতে",
243243
"code": "explode ( string $separator , array $array )"
244+
},
245+
{
246+
"definition": "অ্যারের সকল ভ্যালু দেখতে",
247+
"code": "array_values()"
248+
},
249+
{
250+
"definition": "কী গুলির জন্য একটি এবং এর ভ্যালু গুলির জন্য অন্য একটি অ্যারে ব্যবহার করে একটি অ্যারে তৈরি করতে",
251+
"code": "array_combine()"
252+
},
253+
{
254+
"definition": "ডিসেন্ডিং অর্ডার অ্যারে সাজাতে এবং ইনডেক্স গুলি একত্রে মেইনটেন করতে",
255+
"code": "arsort()"
256+
},
257+
{
258+
"definition": "অ্যারের উপাদান গণনা করতে",
259+
"code": "count()"
260+
},
261+
{
262+
"definition": "একটি অ্যারের সমস্ত ভ্যালু গণনা করতে",
263+
"code": "array_count_values()"
264+
},
265+
{
266+
"definition": "অ্যারের পার্থক্য গণনা করতে",
267+
"code": "array_diff()"
268+
},
269+
{
270+
"definition": "একটি অ্যারের ভ্যালুকে কি এবং কী কে ভ্যালু তে রূপান্তর করতে",
271+
"code": "array_flip()"
272+
},
273+
{
274+
"definition": "অ্যারের মধ্যে থেকে কমন ভ্যালু গুলোকে বের করতে",
275+
"code": "array_intersect()"
276+
},
277+
{
278+
"definition": "অ্যারে লিস্ট কি না চেক করতে",
279+
"code": "array_is_list()"
280+
},
281+
{
282+
"definition": "অ্যারের প্রথম কী সন্ধান করতে ",
283+
"code": "array_key_first()"
284+
},
285+
{
286+
"definition": "অ্যারের শেষ কী সন্ধান করতে ",
287+
"code": "array_key_last()"
288+
},
289+
{
290+
"definition": "একাধিক অ্যারে বা মাল্টি ডায়মেনসোনাল অ্যারে শর্ট করতে",
291+
"code": "array_multisort()"
292+
},
293+
{
294+
"definition": "অ্যারের শেষ উপাদান অ্যারে থেকে বের করে আনতে ",
295+
"code": "array_pop()"
296+
},
297+
{
298+
"definition": "অ্যারের প্রথম উপাদান অ্যারে থেকে বের করে আনতে ",
299+
"code": "array_shift()"
300+
},
301+
{
302+
"definition": "অ্যারের কী ধরে ভ্যালু পৰিৱৰ্তন করতে",
303+
"code": "array_replace()"
304+
},
305+
{
306+
"definition": "অ্যারের ভ্যালু গুলোর যোগফল নির্ণয় করতে",
307+
"code": "array_sum()"
308+
},
309+
{
310+
"definition": "অ্যারেতে কোন নির্দিষ্ট ভ্যালু আছে কি না চেক করতে",
311+
"code": "in_array()"
244312
}
245313
]
246314
},

0 commit comments

Comments
 (0)