I'm trying to use preg_match to return all the URL's that are inclosed in " " in a page source code.
The code I am using is
preg_match('"http://(.+?)\"', $code, $matches);
And I am getting the following error:
Warning: preg_match() [function.preg-match]: Unknown modifier '/' in .... on line 13
Please help me. This is driving me mad!
Thank you.