{ php } | |
mstrstr | |
date | 2004 |
update | 2006 |
code |
<?php
|
description | searches in a string for a collection of stings from an array, returns true or false you can also search for more than one words in combination mstristr is case-insensitive |
syntax |
<?php
|
explanation | so we search for a list of badwords in a text
<?php
in that case $bool is true. ok, now we want all badwords as combination, so a badword has to occure with a link
<?php
in that case $bool is false, cause none of the combinations was found. |