tidy::head
tidy_get_head
(PHP 5, PHP 7, PHP 8, PECL tidy 0.5.2-1.0.0)
tidy::head -- tidy_get_head — Tidy パースツリーの <head> タグから始まる tidyNode オブジェクトを返す
戻り値
tidyNode オブジェクトを返します。
例
例1 tidy::head() の例
<?php
$html = '
<html>
<head>
<title>test</title>
</head>
<body>
<p>paragraph</p>
</body>
</html>';
$tidy = tidy_parse_string($html);
$head = $tidy->head();
echo $head->value;
?>
上の例の出力は以下となります。
<head> <title>test</title> </head>
参考
- tidy::body() - Tidy パースツリーの <body> タグから始まる tidyNode オブジェクトを返す
- tidy::html() - Tidy パースツリーの <html> タグから始まる tidyNode オブジェクトを返す
+add a note
User Contributed Notes
There are no user contributed notes for this page.
↑ and ↓ to navigate •
Enter to select •
Esc to close
Press Enter without
selection to search using Google