Quote:
Originally Posted by kh99
I can't get it to work on my test system either, so I'm afraid I'm stumped. I googled to try to find an answer, but the only thing i found was something that mentioned that it's possible that some versions of php don't handle UTF-8 matching correctly.
|
yeah I also looked very much on google, thank you
But I do not think this is the reason [php versions] , because the code work well in an external file on the same site withot encoding it but on vb plugin don't work .
anyway , can i do what i want by another way ? matching banned words and print it with no problem with the Arabic words .
--------------- Added [DATE]1416157331[/DATE] at [TIME]1416157331[/TIME] ---------------
UPDATE :
I FOUND THE Solution :
\b detects word boundaries, remove them to get a regular match.
JUST USE pattern
Code:
"/(" . implode($bwords,"|") . ")/i "
THANX ,
kh99