The dash should be escaped, and the double quote does not need to be. Bizarrely, you need to quadruple escape the backslash before the semi-colon. Otherwise it is interpreted as if you are escaping the semi-colon and is ignored.*
'/^[a-z0-9#&()\-\\\\;,.\'" ]+$/i'
You can also put an unescaped dash at the beginning of a character class, though that's a bit obscure and may momentarily confuse someone unaware of that option. It works because a dash at the start cannot be part of a valid character range, so it can only be a literal dash character.
'/^[-a-z0-9#&()\\\\;,.\'" ]+$/i'
* The \\\\; is reduced to \\; by PHP before the regex engine sees it. The regex engine then reduces \\; to \;. Thus, four backslashes! A single backslash \; becomes simply ;. The same goes for \\;—PHP reduces that to \; and then the regex engine interprets \; as a plain semi-colon ;. No less than four will do.
Actually, I lied. You can get away with three backslashes. But then you're abusing the leniency of PHP's parser a bit. Four is definitely best.
-should be at the beginning or the end of the regexp to avoid being interpreted as a range. – Aziz Sep 11 '10 at 6:32