vote up 0 vote down star

Hello!

I would like to parse user inputs with PHP. I need a function which tells me if there are invalid characters in the text or not. My draft looks as follows:

<?php
function contains_invalid_characters($text) {
    for ($i = 0; $i < 3; $i++) {
        $text = html_entity_decode($text); // decode html entities
    } // loop is used for repeatedly html encoded entities
    $found = preg_match(...);
    return $found;
}
?>

The function should return TRUE if the input text contains invalid characters and FALSE if not. Valid characters should be:

a-z, A-Z, 0-9, äöüß, blank space, "!§$%&/()=[]\?.:,;-_

Can you tell me how to code this? Is preg_match() suitable for this purpose? It's also important that I can easily expand the function later so that it includes other characters.

I hope you can help me. Thanks in advance!

flag

1 Answer

vote up 3 vote down check

You could use a regular expression to do that:

function contains_invalid_characters($text) {
    return (bool) preg_match('/[a-zA-Z0-9äöüß "!§$%&\/()=[\]\?.:,;\-_]/u', $text);
}

But note that you need to encode that code with the same encoding as the text you want to test. I recommend you to use UTF-8 for that.

link|flag
Thanks! Unfortunately, it returns an "Unknown modifier" error for lots of characters. At first, the error only appears for "(" but when I strip the "(", then it appears also for other characters. Can I escape them so that it works, though? – marco92w Jun 12 at 18:07
The / and ] needed to be escaped. – Gumbo Jun 12 at 18:13
Thank you! Now I get the message "Compilation failed: invalid UTF-8 string at offset 11". This should be due to "äöüß", shouldn't it? How can I encode these characters? – marco92w Jun 12 at 18:16
What encoding do you use? – Gumbo Jun 12 at 18:24
I use UTF-8. I can't replace the pattern by "äöüß", can I? – marco92w Jun 12 at 19:20
show 9 more comments

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.