I'm trying to get all CSS files of an html file from URL.
I know that if I want to get the HTML code it is easy - just using PHP function - file_get_contents.
The question is - if I could search easily inside an a URL of HTML and get from there the files or content of all related CSS files?
Note - I want to build an engine for getting a lot of CSS files, this is why just reading the source is not enough..
Thanks,
linkelements of typetext/css, extracting the URL from them, and making newfile_get_contentsrequests for each of them. Beyond that, you'll also need to parse out embeddedstyletags and inlinestyleattributes throughout the HTML.