0

我从 db 中获取值,例如:

<p><img alt="" src="images/1.jpg" style="width: 2450px; height: 1054px;" /></p>

并且只想得到src="images/1.jpg"但不知道如何。请指导我

4

2 回答 2

1

如果您需要源代码,请使用 DOM Parser:

// Construct a new DOMDocument with your fragment
$domDoc = new DOMDocument;
$domDoc->loadHTML( '<p><img src="images/1.jpg" style="width: 2450px;" /></p>' );

// Locate the first image the document
$img = $domDoc->getElementsByTagName( "img" )->item( 0 );

// Echo its src value
echo $img->attributes->getNamedItem( "src" )->nodeValue;

结果:http ://codepad.org/oMXGK9Iu

理想情况下,您会在访问项目#0 之前确保图像元素存在。同样,您将确保属性存在,然后才跳出并抓住它们。

进一步阅读:http ://www.php.net/manual/en/class.domdocument.php

如果您只想获取文本的特定部分,可以使用简单的正则表达式:

// Prep our html
$html = '<p><img src="images/1.jpg" style="width: 2450px;" /></p>';

// Look for the source string
preg_match( '/src=\".*?\"/', $html, $matches );

// If we found it, spit it out.
echo $matches ? $matches[0] : "No source";
于 2012-08-27T12:13:50.423 回答
0

ifalt=""默认为空而 style 默认为空,width: 2450px; height: 1054px;您可以使用:

<?php
$str = '<p><img alt="" src="images/1.jpg" style="width: 2450px; height: 1054px;" /></p>';
$str = str_replace('<p><img alt="" src="','', $str);
$str = str_replace('" style="width: 2450px; height: 1054px;" /></p>','',$str);
echo $str; //Outputs: images/1.jpg
?>
于 2012-08-27T12:08:55.903 回答