কম্পিউটার

পিএইচপি 8 এ str_starts_with এবং str_ends_with ফাংশন


str_starts_with এবং str_ends_with একটি প্রদত্ত স্ট্রিং অন্য স্ট্রিং দিয়ে শুরু হয় বা শেষ হয় কিনা তা পরীক্ষা করার জন্য PHP 8 এ ফাংশন যোগ করা হয়। যদি এটি শুরু হয় এবং অন্য একটি স্ট্রিং দিয়ে শেষ হয় তবে এটি সত্য হয়, অন্যথায় মিথ্যা।

উদাহরণ

str_starts_with('hello haystack', 'hello'); //starts string found 'True'
str_starts_with('hello haystack', 'stack'); //ends string found 'True'


str_starts_with('hello haystack', 'hay'); //starts string found 'False'
str_starts_with('hello haystack', 'hay'); //ends string found 'False'

str_starts_with() PHP 8

-এ ফাংশন

একটি প্রদত্ত স্ট্রিং স্ট্রিং সুই দিয়ে শুরু হয় কিনা এই ফাংশনটি পরীক্ষা করে। প্রথম স্ট্রিং পাওয়া গেলে এটি সত্য দেখায়, অন্যথায় মিথ্যা।

str_starts_with(string $haystack, string $needle): bool

উদাহরণ:str_starts_with() ফাংশন ব্যবহার করে।

<?php
   if (str_starts_with('hellohaystack', "hello")) {
      echo "string starts with hello";
   }
?>

আউটপুট

String starts with 'hello'

দ্রষ্টব্য: যদি প্রদত্ত প্রথম স্টার্ট স্ট্রিংটি দ্বিতীয় স্ট্রিংটিতে না পাওয়া যায় তবে এটি মিথ্যা ফেরত দেয়।

str_ends_with() PHP 8

-এ ফাংশন

একটি প্রদত্ত স্ট্রিং স্ট্রিং সুই দিয়ে শেষ হয় কিনা এই ফাংশনটি পরীক্ষা করে। প্রদত্ত স্ট্রিং শেষ পাওয়া গেলে এটি সত্য দেখায়, অন্যথায় মিথ্যা।

str_ends_with(string $haystack, string $needle):bool

উদাহরণ:str_ends_with() ফাংশন ব্যবহার করে

<?php
   if (str_ends_with('hellohaystack', "stack")) {
      echo "string ends with stack";
   }
?>

আউটপুট

String ends with 'stack'

  1. পিএইচপি-তে str_repeat() ফাংশন

  2. পিএইচপি-তে str_pad() ফাংশন

  3. quoted_printable_encode() PHP-তে ফাংশন

  4. quoted_printable_decode() PHP-তে ফাংশন