file_get_contents,某些参数?
我目前正在使用 file_get_contents
,因为我不想使用 iframe
。
我正在一个包含如下内容的页面上执行 file_get_contents
:
<html>
<head>
<title>title</title>
</head>
<body style="margin:0; padding:0;">
<a href="http://www.site.com" target="_blank" style="border:none;"><img src="http://www.site.com/image.jpg" style="border:none;" /></a>
<script type="text/javascript">
//some javascript here
</script>
</body>
</html>
我基本上想要执行 file_get_conents
,返回它,并且只在我的网站上回显以下内容:
<a href="http://www.site.com" target="_blank" style="border:none;"><img src="http://www.site.com/image.jpg" style="border:none;" /></a>
我该怎么做?因此,在执行 file_get_contents
时,我避免获取所有额外的内容,而只获取我实际需要的内容,即 a href
及其内部内容。
I am currently using file_get_contents
as I do not wish to use an iframe
.
I am doing the file_get_contents
on a page which holds content such as the following:
<html>
<head>
<title>title</title>
</head>
<body style="margin:0; padding:0;">
<a href="http://www.site.com" target="_blank" style="border:none;"><img src="http://www.site.com/image.jpg" style="border:none;" /></a>
<script type="text/javascript">
//some javascript here
</script>
</body>
</html>
I basically want to do a file_get_conents
, return it, and only echo out the following on my site:
<a href="http://www.site.com" target="_blank" style="border:none;"><img src="http://www.site.com/image.jpg" style="border:none;" /></a>
How can I do this? So when doing a file_get_contents
, I avoid getting all of the extra stuff, and just get what I actually need, the a href
and whats inside it.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您必须使用正则表达式:
You must use regular expressions: