0
是否有一種常規方法來檢查是否爲URL啓用了AMP?如何檢查帶有Php的網站Amp是否啓用
我目前使用Curl來獲取HTML。 我該怎麼辦?
$html;
if(AMP is Enabled)
echo "You are using AMP in Mobile Version";
else
echo "You are not using AMP in Mobile Version";
是否有一種常規方法來檢查是否爲URL啓用了AMP?如何檢查帶有Php的網站Amp是否啓用
我目前使用Curl來獲取HTML。 我該怎麼辦?
$html;
if(AMP is Enabled)
echo "You are using AMP in Mobile Version";
else
echo "You are not using AMP in Mobile Version";
是的,你可以像這樣
非AMP頁面包含
<link rel="amphtml" href="https://www.example.com/url/to/amp/document.html">
假設你已經在$ HTML的內容;
PHP代碼
$dom = new DOMDocument();
@$dom->loadHTML($html);
$nodes = $dom->getElementsByTagName('link');
foreach ($nodes as $node)
{
if ($node->getAttribute('rel') === 'amphtml')
{
echo($node->getAttribute('href'));
/* amp page found do your logic */
}
}