How works on examples mb_stripos:
First we will watch example on symbols(..?).
<?php
$text = "Look! It's a text! Wow!"; $spaceIsHere = mb_stripos($text," "); $text2 = mb_substr($text,$spaceIsHere); print ($text2);
?>
Also it can work on words, sentences...
Here's one of examples:
<?php
$text = "Look! It's a text! Wow!"; $afterNeededWord = mb_stripos($text,"text!"); $text3 = mb_substr($text, $afterNeededWord); print ($text3);
?>
I hope it was useful with my "good" English skills. ;D
Have a nice day, coder.