{"id":325,"date":"2021-09-17T23:55:09","date_gmt":"2021-09-17T15:55:09","guid":{"rendered":"http:\/\/blog.yuekegu.com\/?p=325"},"modified":"2021-09-17T23:55:09","modified_gmt":"2021-09-17T15:55:09","slug":"%e6%b8%85%e9%99%a4%e6%8c%87%e5%ae%9ahtml%e6%a0%87%e7%ad%be","status":"publish","type":"post","link":"https:\/\/book.yuekegu.com\/index.php\/2021\/09\/17\/%e6%b8%85%e9%99%a4%e6%8c%87%e5%ae%9ahtml%e6%a0%87%e7%ad%be\/","title":{"rendered":"\u6e05\u9664\u6307\u5b9aHtml\u6807\u7b7e"},"content":{"rendered":"\n<pre class=\"wp-block-code\"><code>\/**\n * \u5220\u9664\u6307\u5b9a\u6807\u7b7e\n * @param array  $tags    \u5220\u9664\u7684\u6807\u7b7e\n * @param string $str     html\u5b57\u7b26\u4e32\n * @param bool   $type    \u662f\u5426\u4fdd\u7559\u6807\u7b7e\u7684\u5185\u5bb9\n * @return mixed\n * @usage\n *  $str = 'Hello&lt;\/p>&lt;p>&lt;img src=\"http:\/\/www.baidu.com\" \/>&lt;\/b>&lt;Video>';\n *\n *      \/\/ echo strip_tags($str, '&lt;img');\n *      echo $this->stripHtmlTags(array('b','p'),$str,true);\n *\/\npublic static function stripHtmlTags($str,$tags=['p','b'], $content=true)\n{\n    $html = [];\n    if($content){\n        foreach ($tags as $tag) {\n            $html[] = \"\/(&lt;(?:\\\/\" .$tag. \"|\" .$tag. \")[^>]*>)\/is\";\n        }\n    }else{\n        foreach ($tags as $tag) {\n            $html[] = '\/&lt;' .$tag. '.*?>[\\s|\\S]*?&lt;\\\/' .$tag. '>\/is';\n            $html[] = '\/&lt;' .$tag. '.*?>\/is';\n        }\n    }\n    $data = preg_replace($html, '', $str);\n    return $data;\n}<\/code><\/pre>\n","protected":false},"excerpt":{"rendered":"","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[27],"tags":[],"class_list":["post-325","post","type-post","status-publish","format-standard","hentry","category-27"],"_links":{"self":[{"href":"https:\/\/book.yuekegu.com\/index.php\/wp-json\/wp\/v2\/posts\/325","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/book.yuekegu.com\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/book.yuekegu.com\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/book.yuekegu.com\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/book.yuekegu.com\/index.php\/wp-json\/wp\/v2\/comments?post=325"}],"version-history":[{"count":0,"href":"https:\/\/book.yuekegu.com\/index.php\/wp-json\/wp\/v2\/posts\/325\/revisions"}],"wp:attachment":[{"href":"https:\/\/book.yuekegu.com\/index.php\/wp-json\/wp\/v2\/media?parent=325"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/book.yuekegu.com\/index.php\/wp-json\/wp\/v2\/categories?post=325"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/book.yuekegu.com\/index.php\/wp-json\/wp\/v2\/tags?post=325"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}