Kullanımı http://simplehtmldom.sourceforge.net/ ben bu html metni ayıklamak olabileceğini biliyorum:
<?php
include('simple_html_dom.php');
// Create DOM from URL
echo file_get_html('http://www.google.com/')->plaintext;
?>
Ama nasıl tüm metni silmek için?
Örneğin, ben bu giriş HTML varsa:
<html>
<head>
<title>Example</title>
</head>
<body>
<h1>Lore Ipsum</h1>
<p>
Lorem ipsum dolor sit amet, consectetuer adipiscing elit.<br/>
Aenean <em>commodo</em> ligula eget dolor. Aenean massa.
</p>
</body>
</html>
Ben SimpleHtmlDom ile bu çıktıyı almak istiyorum:
<html>
<head>
<title></title>
</head>
<body>
<h1></h1>
<p><br/></p>
</body>
</html>
Diğer bir deyişle, sadece belgenin yapısını devam etmek istiyorum.
Lütfen yardım edin.