get_meta_tags

(PHP 4, PHP 5, PHP 7)

get_meta_tags ��һ���ļ�����ȡ���е� meta ��ǩ content ���ԣ�����һ������

˵��

get_meta_tags ( string $filename [, bool $use_include_path = false ] ) : array

�� filename ���н����ļ��е� <meta> ��ǩ�������������� </head> ��ֹͣ��

����

filename

HTML �ļ���·���ַ����� �˲��������DZ����ļ�Ҳ������һ�� URL��

Example #1 get_meta_tags() ������ʲô

<meta name="author" content="name">
<meta name="keywords" content="php documentation">
<meta name="DESCRIPTION" content="a php manual">
<meta name="geo.position" content="49.33;-86.59">
</head> <!-- ���������ڴ˴�ֹͣ -->
��ע��س����� �� PHP ʹ��һ�����غ������������룬���� Mac �ϵ��ļ��������� Unix ��������������

use_include_path

�� use_include_path ����Ϊ TRUE ��ʹ PHP ���԰��� include_path ��׼����·���е�ÿ��ָ��ȥ���ļ�����ֻ���ڱ����ļ����������� URL��

����ֵ

����һ�����飬�������н������� meta ��ǩ��

���صĹ������������� name ��ֵ��Ϊ�������� content ��ֵ��Ϊֵ����������Ժ����׵�ʹ�ñ�׼���麯�������˹�����������ij��ֵ�� ���� name �е������ַ���ʹ��'_'�滻���������ַ���ת����Сд����������� meta ��ǩӵ����ͬ�� name����ֻ���������ֵ���һ����

������־

�汾 ˵��
4.0.5 ��ʼ֧��û��ʹ�������������� HTML ���ԡ�

����

Example #2 get_meta_tags() ����ʲôЩ

<?php
// �����ϱߵı�ǩ���� www.example.com ��
$tags get_meta_tags('http://www.example.com/');

// ע�����еļ���key����ΪСд�������е�'.'��ת������'_'��
echo $tags['author'];       // name
echo $tags['keywords'];     // php documentation
echo $tags['description'];  // a php manual
echo $tags['geo_position']; // 49.33;-86.59
?>

ע��

Note:

ֻ�а��� name ���Ե� meta ��ǩ�Żᱻ������

�μ�