例如,我的网站是 mysite.com。以下是本站的来源:
<html>
<head>
<title>site</title>
//here is many javascript and css codes
</head>
<body>
<div>
<table border="1">
<tr>
<td><a href="somthing.html">Here is a text</td>
<td><img src="image.gif" alt="this is image"/></td>
</tr>
</table>
</div>
</body>
</html>
如何使用 php 只获取没有所有标签的文本和图像(javascript 代码、链接、表格和其他)?我只想得到“这是一个文本”和“image.gif”。