从包含输出的 php 字符串中提取图像 html
我有 php 变量,当回显时,它会脱口而出 html。但我要(以某种方式!)将图像代码取出来。本质上,我想对图像代码的变量执行 grep 操作。
我该怎么做?我尝试过的所有方法(stripos、strstr)都不起作用,因为它全部以 html 格式打印出来。我怎样才能首先以纯文本而不是html输出代码?
谢谢
I have php variable which when echoed, blurts out the html. But I was to (somehow!) just get the image code out. Essentially, I want to do a grep on the variable for the image code.
How can I do this? Everything I've tried (stripos, strstr) doesn't work because it prints it all out in html. How can I first just output the code in plain text and not html?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
根据变量包含的 HTML,我可以
strip_tags
函数: http://php.net/manual/en/function.strip-tags.phpgetElementsByTagName
或getElementById
查找元素您要查找的信息到底位于哪里?也许你可以发布一个例子。
Depending on the HTML the variable contains, I would either
strip_tags
function: http://php.net/manual/en/function.strip-tags.phpgetElementsByTagName
orgetElementById
Where is the info you're looking for located exactly? Maybe you could post an example.