Skip to content

Commit 8ed4334

Browse files
authored
add some description of functions
1 parent 518ce7d commit 8ed4334

1 file changed

Lines changed: 15 additions & 2 deletions

File tree

data/wordpress-plugin-development.json

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -321,18 +321,31 @@
321321
"title": "প্লাগইন সিকিউরিটি (ভ্যালিডেশন)",
322322
"items": [
323323
{
324-
"code": "isset() and empty()"
324+
"definition": "Array/ Object এ কোন key সেট করা আছে কিনা চেক করতে",
325+
"code": "isset()"
325326
},
326327
{
328+
"definition": "Array/ Object/ String খালি কিনা চেক করতে। এটা isset() এর কাজ ও করে।",
329+
"code": "empty()"
330+
},
331+
{
332+
"definition": "String এ কত গুলো char আছে জানতে",
327333
"code": "mb_strlen() or strlen()"
328334
},
329335
{
330-
"code": "preg_match(), strpos()"
336+
"definition": "রেগুলার এক্সপ্রেশন দিয়ে কোন String থেকে Sub String বের করতে",
337+
"code": "preg_match()"
338+
},
339+
{
340+
"definition": "একটা String থেকে অন্য Sub String এর পজিশন বের করতে",
341+
"code": "strpos()"
331342
},
332343
{
344+
"definition": "Array তে কত গুলো এলিমেন্ট আছে জানতে",
333345
"code": "count()"
334346
},
335347
{
348+
"definition": "Array কিনা জানতে",
336349
"code": "in_array()"
337350
},
338351
{

0 commit comments

Comments
 (0)