我正在开发一个小功能,用于从我的 twitter rss 提要中获取和显示项目。但我以这种格式得到它:
标题http://t.co/xxx
我想要的是从我得到的那个字符串中提取http://t.co/xx (url)。所以我可以将其用作链接等。
感谢您的帮助:}
我正在开发一个小功能,用于从我的 twitter rss 提要中获取和显示项目。但我以这种格式得到它:
标题http://t.co/xxx
我想要的是从我得到的那个字符串中提取http://t.co/xx (url)。所以我可以将其用作链接等。
感谢您的帮助:}
可能也是学习正则表达式的好时机:)
试试这个
<?php
$s = '
Title http://t.co/xxx
Title http://t.co/yyy
';
$s2 = preg_replace( '@(Title |http://t.co/)@i', '', $s );
echo nl2br( $s2 );
?>
尝试 :
$title = Title http://t.co/xxx
$final = str_replace("Title ","",$title);
$item = "Title http://t.co/xxx";
preg_match( "/http\S+/", $item, $matches );
$url = $matches[0];
$str = 'Title http://t.co/xxx';
echo substr($str, strpos($str, 'http'));