Hi.
In a upload class I've got a method like this:
public function addExtension($extension) {
$this->extensions[]= $extension;
}
I'd like to validate the extension string (ie image/jpeg)
therefore I need a regex that validate a string with a
slash inside.
(Yes, I agree I've to study regex :o )
Bye.