0

在我的项目中,我有一个 PHP 函数可以解析 HTML 页面并正确检索元标记。当我为 aspx 页面运行我的函数时,即使有问题的 aspx 页面已正确设置元标记,它也会失败并且不会创建返回数据。

功能是:

function getUrlData($url)
{
$result = false;

$contents = getUrlContents($url);

if (isset($contents) && is_string($contents))
{
    $title = null;
    $metaTags = null;

    preg_match('/<title>([^>]*)<\/title>/si', $contents, $match );

    if (isset($match) && is_array($match) && count($match) > 0)
    {
        $title = strip_tags($match[1]);
    }

    preg_match_all('/<[\s]*meta[\s]*name="?' . '([^>"]*)"?[\s]*' . 'content="?     ([^>"]*)"?[\s]*[\/]?[\s]*>/si', $contents, $match);

    if (isset($match) && is_array($match) && count($match) == 3)
    {
        $originals = $match[0];
        $names = $match[1];
        $values = $match[2];

        if (count($originals) == count($names) && count($names) == count($values))
        {
            $metaTags = array();

            for ($i=0, $limiti=count($names); $i < $limiti; $i++)
            {
                $metaTags[$names[$i]] = array (
                    'html' => htmlentities($originals[$i]),
                    'value' => $values[$i]
                );
            }
        }
    }

    $result = array (
        'title' => $title,
        'metaTags' => $metaTags
    );
}

return $result;
}

function getUrlContents($url, $maximumRedirections = null, $currentRedirection = 0)
{
$result = false;

$contents = @file_get_contents($url);

// Check if we need to go somewhere else

if (isset($contents) && is_string($contents))
{
    preg_match_all('/<[\s]*meta[\s]*http-equiv="?REFRESH"?' . '[\s]*content="?[0-9]*;[\s]*URL[\s]*=[\s]*([^>"]*)"?' . '[\s]*[\/]?[\s]*>/si', $contents, $match);

    if (isset($match) && is_array($match) && count($match) == 2 && count($match[1]) == 1)
    {
        if (!isset($maximumRedirections) || $currentRedirection < $maximumRedirections)
        {
            return getUrlContents($match[1][0], $maximumRedirections, ++$currentRedirection);
        }

        $result = false;
    }
    else
    {
        $result = $contents;
    }
}

return $contents;
}

如何从 aspx 页面读取元标记?

提前致谢

4

1 回答 1

0

使用get_meta_tags可能有更简单的方法

例如

<?php

// Load
$tags = get_meta_tags('http://www.example.com/');

// Debug
echo "<pre>";
print_r($tags);
echo "</pre>";

?>
于 2013-11-06T12:35:06.070 回答