PHP get_meta_tags函数的使用
get_meta_tags
(PHP3 >= 3.0.4 , PHP4)
get_meta_tags — 从文件取出所有meta标签内容属性并且传回数组
语法 : array get_meta_tags (string filename [, int use_include_path])
说明 :
开启文件filename,并且一行一行的剖析<meta>标签。
Example :
<meta name=”author” content=”name”>
<meta name=”tags” content=”php3 documentation”>
</head> <!– parsing stops here –>
name属性的值会成为索引值,而content属性的值会成为数组的值,如此一来你便可以使用数组函数库来存取它的值,在name属性的值的特殊字元会用”_”来替代,其余的会转换成小写。
设定参数use_include_path为1,将会使PHP试着去开启include_path中的文件。