michaellunsford Posted March 14, 2007 Share Posted March 14, 2007 Some client content is starting to contain slashes and other oddities. Generally, preg_replace will give "unknown modifier" errors on the character directly following a slash in client content. So, I've patched it using addcslashes, but I'm not sure I have the complete regex special character list. Is there a built-in php function that's eluding me, or is addcslashes the only way to go? If the latter, I have "\/^$*+?.()|{}," -- am I missing any? Quote Link to comment Share on other sites More sharing options...
effigy Posted March 14, 2007 Share Posted March 14, 2007 preg_quote. Quote Link to comment Share on other sites More sharing options...
michaellunsford Posted March 14, 2007 Author Share Posted March 14, 2007 hey, great. that's it... Just couldn't find it for some weird reason. Thanks! Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.