MD ASIF IQBAL

MD ASIF IQBAL

MD ASIF IQBAL

ยท9 months ago

20 PHP Features You Should Know in 2023

  1. str_contains(): Checks if a string is contained in another string. $sentence = "The quick brown ๐ŸฆŠ jumps over the lazy ๐Ÿถ.";$word = "๐ŸฆŠ";if (str_contains($sentence, $word)) { echo "The sentence contains the word ๐ŸฆŠ.";} 2. str_starts_with(): Checks if a string starts with a given substring. $sentence = "๐Ÿš€ Launching...

20 PHP Features You Should Know in 2023

Loading...