2

我正在开发一个小功能,用于从我的 twitter rss 提要中获取和显示项目。但我以这种格式得到它:
标题http://t.co/xxx

我想要的是从我得到的那个字符串中提取http://t.co/xx (url)。所以我可以将其用作链接等。
感谢您的帮助:}

4

4 回答 4

0

可能也是学习正则表达式的好时机:)

试试这个

<?php
$s = '
Title http://t.co/xxx
Title http://t.co/yyy

';

$s2 = preg_replace( '@(Title |http://t.co/)@i', '', $s );
echo nl2br( $s2 );
?>
于 2012-05-02T01:48:40.177 回答
0

尝试 :

$title = Title http://t.co/xxx

$final = str_replace("Title ","",$title);
于 2012-05-02T01:19:13.753 回答
0
$item = "Title http://t.co/xxx";
preg_match( "/http\S+/", $item, $matches );
$url = $matches[0];
于 2012-05-02T01:36:53.640 回答
0
$str = 'Title http://t.co/xxx';
echo substr($str, strpos($str, 'http'));
于 2012-05-02T01:22:59.843 回答