A rather simple scenario; I've got an array of user inputted url's (could be any number from 1 to 1000+), and I want to perform file_get_contents(); on all of them, and then if possible have all that binded/bound into a single variable, so that preg_match_all(); can be performed on that variable to pick up specific strings.
I've heard that using cURL might be another option, however I've got very little knowledge on the function of cURL.