男女疯狂一边摸一边做羞羞视频|啊好深好硬快点用力别停动态图|亚洲一区无码中文字幕|特级无码毛片免费视频播放▽|久久狠狠躁免费观看|国内精品久久久久久网站
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>