How to remove ⭕️ and ♛ emoji from the beginning of the string PHP? Please note that I only want to remove ⭕️ and ♛ emoji, NOT all the emoji.
For example:-
If the string is ⭕️ ABC 123 XYZ 789
then it should look ABC 123 XYZ 789
after removal of emoji ♛ from the beginning of the string.
I tried preg_replace("⭕️", "", $string) and str_replace("⭕️", "", $string)
but does not work at all.