首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > PHP >

正则表达式匹配时,怎么去掉引号

2013-01-07 
正则表达式匹配时,如何去掉引号我在php中运行如下程序?php$str img src\http://xxx/xxx.jpg\ alt

正则表达式匹配时,如何去掉引号
我在php中运行如下程序
<?php
$str = '<img src=\'http://xxx/xxx.jpg\' alt=\'\' />';
$soImages = '/\'(.*?)\'/';
preg_match_all( $soImages, $str, $thePics );
$allPics = count($thePics[0]);
if( $allPics > 0 ){
echo $thePics[0][0];
}
?>

返回的结果为'http://xxx/xxx.jpg'
我希望返回结果直接是http://xxx/xxx.jpg
请问如何让正则匹配返回不带单引号的结果?
[解决办法]
echo $thePics[1][0];

热点排行