get_meta_tags
Description
Extracts all meta tag content attributes from a file and returns an array
Syntax
get_meta_tags ( string $filename [, bool $use_include_path = FALSE ] ) : array
Parameters
filename
The path to the HTML file, as a string. This can be a local file or a URL.
use_include_path
Setting use_include_path to TRUE will result in PHP trying to open the file along the standard include path as per the include_path directive. This is used for local files, not URLs.
Return
Returns an array with all the parsed meta tags. The value of the name property becomes the key, the value of the content property becomes the value of the returned array, so you can easily use standard array functions to traverse it or access single values. Special characters in the value of the name property are substituted with '_', the rest is converted to lower case. If two meta tags have the same name, only the last one is returned.
Examples
1 · filename
<? $filename = 'https://www.php.net/'; $return = get_meta_tags($filename); print_r($return); ?>
Array ( [viewport] => width=device-width, initial-scale=1.0 [description] => PHP is a popular general-purpose scripting language that powers everything from your blog to the most popular websites in the world. [twitter:card] => summary_large_image [twitter:site] => @official_php [twitter:title] => PHP: Hypertext Preprocessor [twitter:description] => PHP is a popular general-purpose scripting language that powers everything from your blog to the most popular websites in the world. [twitter:creator] => @official_php [twitter:image:src] => https://www.php.net/images/meta-image.png )
2 · Return
<? $filename = "meta.html"; $data = '<!doctype html> <html> <head> <meta name="author" content="author"> <meta name="keywords" content="keywords"> <meta name="description" content="description"> <meta name="special.characters" content="special characters to underscore"> <meta name="UPPERCASE" content="uppercase to lowercase"> <meta name="same" content="first"> <meta name="same" content="same only returns last"> </head> </html>'; file_put_contents($filename, $data); $return = get_meta_tags($filename); print_r($return); ?>
Array ( [author] => author [keywords] => keywords [description] => description [special_characters] => special characters to underscore [uppercase] => uppercase to lowercase [same] => same only returns last )