I feel Like I'm going to be stealing some of Scott Hansleman's thunder when saying this but,
"So you have a problem. And you've decided to use a regular expression to solve it. Now you have two problems..."
As far as syntax goes, there are some minor differences between the PHP and say Perl or .net regular expressions (mostly in how they handle escape characters). The bigger question is why you'd want a book on the regular expressions at all.
If you're looking to become proficient at writing regular expressions yourself, then a book might be helpful for getting the 'zen' of it and giving you a good lens through which to learn. It really is like learning a whole other programming language, though it becomes a very powerful tool if you do so.
If, on the other hand, you don't want to become a Regex guru and you just want to approach some specific tasks, I might recommend sites like http://www.regexlib.com, which is kind of like a wiki for good regular expressions. There are also tools like RegexBuddy that can give you a good, interactive way of fine tuning some of the expressions into giving you the results you want without really having to grasp the whole of the regular expressions themselves. These kinds of tools would probably serve you better than any book you can find if your goals are more practical.