-1

我有这个字符串:

"small:
http://img.exent.com/free/frg/products/666550/player_boxshot.jpg
boxshot:
http://img.exent.com/free/frg/products/666550/boxshot.jpg"

我只想获得第一个图像链接(在“小”这个词之后)并忽略所有其余的(“boxshot”这个词和它之后的链接)。

我怎样才能做到?

4

4 回答 4

1

使用它并喜欢我的答案。string是你上面的整个字符串

substr(string,0,stripos(string,"boxshot")-1);
于 2012-04-09T09:11:35.557 回答
1
$string = "small:
http://img.exent.com/free/frg/products/666550/player_boxshot.jpg
boxshot:
http://img.exent.com/free/frg/products/666550/boxshot.jpg";

preg_match_all('~http(.*?)jpg~i',trim($string),$matches);
var_dump($matches[0][0]);
于 2012-04-09T09:16:03.607 回答
0

简单的方法:

<?php
    $str='small: http://img.exent.com/free/frg/products/666550/player_boxshot.jpg boxshot: http://img.exent.com/free/frg/products/666550/boxshot.jpg';
    $parts=explode('boxshot:',$str);
    $small=$parts[0];
    echo($small);
?>
于 2012-04-09T09:16:01.287 回答
0

试试这个:

$string = "small:
http://img.exent.com/free/frg/products/666550/player_boxshot.jpg
boxshot:
http://img.exent.com/free/frg/products/666550/boxshot.jpg";

// replace all 2 or more consecutive spaces with 1 space
$string = preg_replace( '/\s\s+/i', ' ', $string);
$array = explode( ' ', $string);
echo $array[1];

希望这可以帮助。

于 2012-04-09T09:31:39.307 回答