当前位置: 代码迷 >> PHP >> 正则匹配file_get_contents,该如何处理
  详细解决方案

正则匹配file_get_contents,该如何处理

热度:82   发布时间:2016-04-29 01:11:57.0
正则匹配file_get_contents
用file_get_contents过来后的内容为

HTML code
........<span class="music-icon-hook { 'musicIcon': { id: '7313936' , type:'song', iconStr:' play add collect songword download' } }">........


我想取得id 正则表达式怎么写比较好 望大家不吝赐教 



------解决方案--------------------
直接写就是拉。
preg_match("/id: '(\d+)'/",$str,$m);
echo $m[1];
------解决方案--------------------
截取截取