MD ASIF IQBAL
ยท1 year ago
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...