Is there any PHP snippet for extraction "title", "meta tags", "body contents", and "images" providing from an URL? Thank if sharing.
There's also CURL, open(), and various other libraries that will do it. I personally prefer CURL, so many options and ways to customize it.
I tried with get_meta_tags() and file_get_contents(). get_meta_tags() is fine, but file_get_contents() is sometimes refused by the targeted server. Thanks bros, I'll try cURL lib.