欧美AV无码一区二区,麻豆+无码+国产在线+观看,欧美狂躁少妇XXXX高潮无码,美女扒开屁股让男人桶免费观看,极品粉嫩国产18尤物在线播放
tag of the tidy parse tree">(PHP 5, PHP 7, PHP 8, PECL tidy 0.5.2-1.0)
tidy::body -- tidy_get_body — Returns a tidyNode object starting from the <body> tag of the tidy parse tree
面向對象風(fēng)格
過(guò)程化風(fēng)格
Returns a tidyNode object starting from the <body> tag of the tidy parse tree.
Returns a tidyNode object starting from the <body> tag of the tidy parse tree.
示例 #1 tidy::getBody() example
<?php
$html = '
<html>
<head>
<title>test</title>
</head>
<body>
<p>paragraph</p>
</body>
</html>';
$tidy = tidy_parse_string($html);
$body = $tidy->Body();
echo $body->value;
?>
以上例程會(huì )輸出:
<body> <p>paragraph</p> </body>