Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
PHPで別のファイルから特定のメタタグを取得するにはどうすればよいですか? これは、メタタグを作成するために使用するコードです。<meta name="thumbnail" content="1.png" />
<meta name="thumbnail" content="1.png" />
これは私がjavascriptで試したことです:
var x = document.getElementByID('myIdExample').content; alert(x);
しかし、メタ タグが外部ページにあるため、機能しません。
を使用して修正した場合は、使用したいタグの名前にexplode() 置き換えてください...**thumbnail**
explode()
**thumbnail**
$thumbnail = get_meta_tags('http://s0ulp1xel.x10.mx/background-garage/?p=photo&photo=1'); $thumbnail = array_map('trim', explode(',', $thumbnail['**thumbnail**']));