-6
如何分別解析以下代碼中每個頭的內容。如何解析php代碼中的html內容?
$str="<html>
<body>
<h1>Java</h1>
<p>Java is a platform independent object oriented programming language</p>
<h2>Html</h2>
<p>HTML is a markup language for describing web documents</p>
<h3>Php</h3>
<p>Php is simple</p>
</body>
</html>";
你看過這個嗎? – Carlo
你想要做什麼? –
使用DOMDocument – RamRaider